Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,060 for associateBy (1.74 sec)

  1. src/go/doc/testdata/issue12839.1.golden

    FUNCTIONS
    	// F1 should not be associated with T1 
    	func F1() (*T1, *T2)
    
    	// F10 should not be associated with T1. 
    	func F10() (T1, T2, error)
    
    	// F4 should not be associated with a type (same as F1) 
    	func F4() (a T1, b T2)
    
    	// F9 should not be associated with T1. 
    	func F9() (int, T1, T2)
    
    
    TYPES
    	// 
    	type T1 struct{}
    
    	// F2 should be associated with T1 
    	func F2() (a, b, c T1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 04 17:57:55 UTC 2018
    - 962 bytes
    - Viewed (0)
  2. src/go/doc/testdata/issue12839.2.golden

    FUNCTIONS
    	// F1 should not be associated with T1 
    	func F1() (*T1, *T2)
    
    	// F10 should not be associated with T1. 
    	func F10() (T1, T2, error)
    
    	// F4 should not be associated with a type (same as F1) 
    	func F4() (a T1, b T2)
    
    	// F9 should not be associated with T1. 
    	func F9() (int, T1, T2)
    
    
    TYPES
    	// 
    	type T1 struct{}
    
    	// F2 should be associated with T1 
    	func F2() (a, b, c T1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 04 17:57:55 UTC 2018
    - 928 bytes
    - Viewed (0)
  3. src/go/doc/testdata/issue12839.go

    }
    
    // F5 should be associated with T1.
    func F5() (T1, error) {
    	return T1{}, nil
    }
    
    // F6 should be associated with T1.
    func F6() (*T1, error) {
    	return &T1{}, nil
    }
    
    // F7 should be associated with T1.
    func F7() (T1, string) {
    	return T1{}, nil
    }
    
    // F8 should be associated with T1.
    func F8() (int, T1, string) {
    	return 0, T1{}, nil
    }
    
    // F9 should not be associated with T1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 04 17:57:55 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue12839.0.golden

    FUNCTIONS
    	// F1 should not be associated with T1 
    	func F1() (*T1, *T2)
    
    	// F10 should not be associated with T1. 
    	func F10() (T1, T2, error)
    
    	// F4 should not be associated with a type (same as F1) 
    	func F4() (a T1, b T2)
    
    	// F9 should not be associated with T1. 
    	func F9() (int, T1, T2)
    
    
    TYPES
    	// 
    	type T1 struct{}
    
    	// F2 should be associated with T1 
    	func F2() (a, b, c T1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 04 17:57:55 UTC 2018
    - 928 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // are stored. This value will be fed to the "file_prefix" tensor to restore the
    // variables.
    // * `function_aliases` maps the actual function name to the function alias.
    // This associates the quantized functions to the original functions' aliases.
    // If there were no function aliases in the input model, this should be empty.
    // * `asset_file_defs` include information about the assets, if any, that are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/topology/topology.go

    	NumNUMANodes int
    	CPUDetails   CPUDetails
    }
    
    // CPUsPerCore returns the number of logical CPUs are associated with
    // each core.
    func (topo *CPUTopology) CPUsPerCore() int {
    	if topo.NumCores == 0 {
    		return 0
    	}
    	return topo.NumCPUs / topo.NumCores
    }
    
    // CPUsPerSocket returns the number of logical CPUs are associated with
    // each socket.
    func (topo *CPUTopology) CPUsPerSocket() int {
    	if topo.NumSockets == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. src/net/textproto/header.go

    // Add adds the key, value pair to the header.
    // It appends to any existing values associated with key.
    func (h MIMEHeader) Add(key, value string) {
    	key = CanonicalMIMEHeaderKey(key)
    	h[key] = append(h[key], value)
    }
    
    // Set sets the header entries associated with key to
    // the single element value. It replaces any existing
    // values associated with key.
    func (h MIMEHeader) Set(key, value string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/DomainObjectContext.java

         */
        ModelContainer<?> getModel();
    
        /**
         * The path to the build that is associated with this object.
         */
        Path getBuildPath();
    
        /**
         * Whether the context is a script.
         *
         * Some objects are associated with a script, that is associated with a domain object.
         */
        boolean isScript();
    
        /**
         * Whether the context is a root script.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

        /**
         * Returns the name of the Gradle component associated with this binary
         */
        @Input
        String getComponentName();
    
        /**
         * Returns the visual studio project name associated with this binary
         */
        @Input
        String getVisualStudioProjectName();
    
        /**
         * Returns the visual studio project configuration name associated with this binary
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    // MatchesScopeFunc knows how to evaluate if an object matches a scope
    type MatchesScopeFunc func(scope corev1.ScopedResourceSelectorRequirement, object runtime.Object) (bool, error)
    
    // UsageFunc knows how to measure usage associated with an object
    type UsageFunc func(object runtime.Object) (corev1.ResourceList, error)
    
    // MatchingResourceNamesFunc is a function that returns the list of resources matched
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top