Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,060 for associateBy (1.15 sec)

  1. cmd/kubelet/app/options/osflags_windows.go

    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	fs.StringVar(&f.WindowsPriorityClass, "windows-priorityclass", "NORMAL_PRIORITY_CLASS",
    		"Set the PriorityClass associated with kubelet process, the default ones are available at "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/Synchronizer.java

         * Runs the given action while holding the associated resource lock, blocking until the lock can be acquired.
         *
         * Fails if the current thread is already holding the resource lock. May release project locks prior to blocking, as per {@link WorkerLeaseService#blocking(Runnable)}.
         */
        void withLock(Runnable action);
    
        /**
         * Runs the given action while holding the associated resource lock, blocking until the lock can be acquired.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/public/tensor_spec.h

    #endif  // __cplusplus
    
    // An opaque type corresponding to TensorSpec
    typedef struct TF_TensorSpec TF_TensorSpec;
    
    // Returns the dtype associated with the TensorSpec.
    TF_CAPI_EXPORT extern TF_DataType TF_TensorSpecDataType(
        const TF_TensorSpec* spec);
    
    // Returns the shape associated with the TensorSpec. The returned Shape is not
    // owned by the caller. Caller must not call TF_DeleteShape on the returned
    // shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemContext.java

        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
        List<Solution> getSolutions();
    
        /**
         * Returns the failure associated with this problem.
         * <br>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. test/typeparam/boundmethod.go

    	//
    	// // stringify on an instantiated type, whose bound method is associated with
    	// // the generic type StringInt[T], which maps directly to T.
    	// got2 := stringify(x2)
    	// want2 := []string{"5", "7", "6"}
    	// if !reflect.DeepEqual(got2, want2) {
    	// 	panic(fmt.Sprintf("got %s, want %s", got2, want2))
    	// }
    
    	// stringify on an instantiated type, whose bound method is associated with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 14:29:30 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/MapGetOrDefaultTester.java

        assertEquals(
            "getOrDefault(present, def) should return the associated value",
            v0(),
            getMap().getOrDefault(k0(), v3()));
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testGetOrDefault_presentNullDefault() {
        assertEquals(
            "getOrDefault(present, null) should return the associated value",
            v0(),
            getMap().getOrDefault(k0(), null));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationContext.java

     * limitations under the License.
     */
    
    package org.gradle.internal.reflect.validation;
    
    import org.gradle.api.Action;
    
    public interface TypeValidationContext {
    
        /**
         * Visits a validation problem associated with the given type.
         * Callers are encouraged to provide as much information as they can on
         * the problem following the problem builder instructions.
         *
         * @param problemSpec the problem builder
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build (darwin && !ios) || linux || zos
    
    package unix
    
    import "unsafe"
    
    // SysvShmAttach attaches the Sysv shared memory segment associated with the
    // shared memory identifier id.
    func SysvShmAttach(id int, addr uintptr, flag int) ([]byte, error) {
    	addr, errno := shmat(id, addr, flag)
    	if errno != nil {
    		return nil, errno
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/decls2/decls2a.go

    // Methods of non-struct type.
    type T4 func()
    
    func (self T4) m() func() { return self }
    
    // Methods associated with an interface.
    type T5 interface {
    	m() int
    }
    
    func (T5 /* ERROR "invalid receiver" */ ) m1() {}
    func (T5 /* ERROR "invalid receiver" */ ) m2() {}
    
    // Methods associated with a named pointer type.
    type ptr *int
    func (ptr /* ERROR "invalid receiver" */ ) _() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    	// +optional
    	LimitedResources []LimitedResource
    }
    
    // LimitedResource matches a resource whose consumption is limited by default.
    // To consume the resource, there must exist an associated quota that limits
    // its consumption.
    type LimitedResource struct {
    
    	// APIGroup is the name of the APIGroup that contains the limited resource.
    	// +optional
    	APIGroup string `json:"apiGroup,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
Back to top