Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for fieldsV1 (0.5 sec)

  1. src/runtime/map.go

    	nevacuate  uintptr        // progress counter for evacuation (buckets less than this have been evacuated)
    
    	extra *mapextra // optional fields
    }
    
    // mapextra holds fields that are not present on all maps.
    type mapextra struct {
    	// If both key and elem do not contain pointers and are inline, then we mark bucket
    	// type as containing no pointers. This avoids scanning such maps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// resourceModel contains the information about available and allocated resources when using
    	// structured parameters and the pod needs this information.
    	resources resources
    
    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/testing/testing.go

    const maxStackLen = 50
    
    // common holds the elements common between T and B and
    // captures common methods such as Errorf.
    type common struct {
    	mu          sync.RWMutex         // guards this group of fields
    	output      []byte               // Output generated by test or benchmark.
    	w           io.Writer            // For flushToParent.
    	ran         bool                 // Test or benchmark (or one of its subtests) was executed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	GRANT_ACCESS      = 1
    	SET_ACCESS        = 2
    	DENY_ACCESS       = 3
    	REVOKE_ACCESS     = 4
    	SET_AUDIT_SUCCESS = 5
    	SET_AUDIT_FAILURE = 6
    )
    
    // Constants for AceFlags and Inheritance fields
    const (
    	NO_INHERITANCE                     = 0x0
    	SUB_OBJECTS_ONLY_INHERIT           = 0x1
    	SUB_CONTAINERS_ONLY_INHERIT        = 0x2
    	SUB_CONTAINERS_AND_OBJECTS_INHERIT = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    // serverHelloMsg, we store the original wire representation of the message and
    // use that for hashing, since unmarshal/marshal are not idempotent due to
    // extension ordering and other malleable fields, which may cause differences
    // between what was received and what we marshal.
    func transcriptMsg(msg handshakeMessage, h transcriptHash) error {
    	if msgWithOrig, ok := msg.(handshakeMessageWithOriginalBytes); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		tc.nodeInfos = append(tc.nodeInfos, nodeInfo)
    	}
    	tc.state = framework.NewCycleState()
    
    	return tc
    }
    
    // createReactor implements the logic required for the UID and ResourceVersion
    // fields to work when using the fake client. Add it with client.PrependReactor
    // to your fake client. ResourceVersion handling is required for conflict
    // detection during updates, which is covered by some scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    	if err != nil {
    		return nil, fmt.Errorf("failed command 'du' on %s with error %v", tmpDir, err)
    	}
    	used, err := resource.ParseQuantity(strings.Fields(string(out))[0])
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse 'du' output %s due to error %v", out, err)
    	}
    	used.Format = resource.BinarySI
    	return &used, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private final ConfigurationsProvider configurationsProvider;
    
        private final Path identityPath;
        private final Path projectPath;
    
        // These fields are not covered by mutation lock
        private final String name;
        private final DefaultConfigurationPublications outgoing;
    
        private boolean visible = true;
        private boolean transitive = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			_, got, kmsUsed, err := getTransformerOverridesAndKMSPluginProbes(ctx, config, "")
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// unset fields that are not relevant to the test
    			for i := range got {
    				checker := got[i]
    				switch p := checker.(type) {
    				case *kmsPluginProbe:
    					p.service = nil
    					p.l = nil
    					p.lastResponse = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    		cmd.Args = append(cmd.Args, "std", "cmd")
    		cmd.Stderr = new(bytes.Buffer)
    		all, err := cmd.Output()
    		if err != nil {
    			fatalf("Error running go list std cmd: %v:\n%s", err, cmd.Stderr)
    		}
    		pkgs := strings.Fields(string(all))
    		for _, pkg := range pkgs {
    			if registerStdTestSpecially[pkg] {
    				continue
    			}
    			t.registerStdTest(pkg)
    		}
    		if t.race {
    			for _, pkg := range pkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top