Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for userflags (0.17 sec)

  1. cmd/erasure-metadata.go

    		}
    	}
    
    	// Extract etag from metadata.
    	objInfo.ETag = extractETag(fi.Metadata)
    
    	// Add user tags to the object info
    	tags := fi.Metadata[xhttp.AmzObjectTagging]
    	if len(tags) != 0 {
    		objInfo.UserTags = tags
    	}
    
    	// Add replication status to the object info
    	objInfo.ReplicationStatusInternal = fi.ReplicationState.ReplicationStatusInternal
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeImpl.java

            log.debug("Sending VALIDATE_NEGOTIATE_INFO");
            Smb2IoctlRequest req = new Smb2IoctlRequest(sess.getConfig(), Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO);
            req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL);
            req.setInputData(
                new ValidateNegotiateInfoRequest(
                    negoReq.getCapabilities(),
                    negoReq.getClientGuid(),
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. misc/go_android_exec/main.go

    	}
    	return exec.Command("adb", args...)
    }
    
    const (
    	deviceRoot   = "/data/local/tmp/go_android_exec"
    	deviceGoroot = deviceRoot + "/goroot"
    )
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("go_android_exec: ")
    	exitCode, err := runMain()
    	if err != nil {
    		log.Fatal(err)
    	}
    	os.Exit(exitCode)
    }
    
    func runMain() (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/manifest-generate_test.go

    	var mwh []v1.MutatingWebhook
    	if err := json.Unmarshal(by, &mwh); err != nil {
    		t.Fatal(err)
    	}
    	return mwh
    }
    
    func getWebhooks(t *testing.T, setFlags string, webhookName string) []v1.MutatingWebhook {
    	t.Helper()
    	got, err := runManifestGenerate([]string{}, setFlags, liveCharts, []string{"templates/mutatingwebhook.yaml"})
    	if err != nil {
    		t.Fatal(err)
    	}
    	objs, err := object.ParseK8sObjectsFromYAMLManifest(got)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcshared/cshared_test.go

    var exeSuffix string
    
    var GOOS, GOARCH, GOROOT string
    var installdir string
    var libgoname string
    
    func TestMain(m *testing.M) {
    	os.Exit(testMain(m))
    }
    
    func testMain(m *testing.M) int {
    	log.SetFlags(log.Lshortfile)
    	flag.Parse()
    	if testing.Short() && os.Getenv("GO_BUILDER_NAME") == "" {
    		globalSkip = func(t *testing.T) { t.Skip("short mode and $GO_BUILDER_NAME not set") }
    		return m.Run()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         */
        public final byte getFlags () {
            return this.flags;
        }
    
    
        /**
         * @param flags
         *            the flags to set
         */
        public final void setFlags ( byte flags ) {
            this.flags = flags;
        }
    
    
        /**
         * @return the flags2
         */
        public final int getFlags2 () {
            return this.flags2;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  7. misc/ios/go_ios_exec.go

    )
    
    // lock is a file lock to serialize iOS runs. It is global to avoid the
    // garbage collector finalizing it, closing the file and releasing the
    // lock prematurely.
    var lock *os.File
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("go_ios_exec: ")
    	if debug {
    		log.Println(strings.Join(os.Args, " "))
    	}
    	if len(os.Args) < 2 {
    		log.Fatal("usage: go_ios_exec a.out")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    var _ bisect.Matcher
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: bisect [flags] [var=value...] command [arguments...]\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("bisect: ")
    
    	var b Bisect
    	b.Stdout = os.Stdout
    	b.Stderr = os.Stderr
    	flag.IntVar(&b.Max, "max", 0, "stop after finding `m` failing change sets")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/carchive_test.go

    var testWork bool // If true, preserve temporary directories.
    
    func TestMain(m *testing.M) {
    	flag.BoolVar(&testWork, "testwork", false, "if true, log and preserve the test's temporary working directory")
    	flag.Parse()
    
    	log.SetFlags(log.Lshortfile)
    	os.Exit(testMain(m))
    }
    
    func testMain(m *testing.M) int {
    	if testing.Short() && os.Getenv("GO_BUILDER_NAME") == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testshared/shared_test.go

    	} else {
    		gopathInstallDir = filepath.Join(depP.PkgTargetRoot, "testshared")
    	}
    	return m.Run(), nil
    }
    
    func TestMain(m *testing.M) {
    	log.SetFlags(log.Lshortfile)
    	flag.Parse()
    
    	exitCode, err := testMain(m)
    	if err != nil {
    		log.Fatal(err)
    	}
    	os.Exit(exitCode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
Back to top