Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,105 for p_hold (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         * @return The domain object list.
         * @since 6.1
         */
        <T> NamedDomainObjectList<T> namedDomainObjectList(Class<T> elementType);
    
        /**
         * Creates a {@link Property} implementation to hold values of the given type. The property has no initial value.
         *
         * <p>For certain types, there are more specialized property factory methods available:</p>
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.proto

    syntax = "proto2";
    
    package k8s.io.apimachinery.pkg.util.intstr;
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/apimachinery/pkg/util/intstr";
    
    // IntOrString is a type that can hold an int32 or a string.  When used in
    // JSON or YAML marshalling and unmarshalling, it produces or consumes the
    // inner type.  This allows you to have, for example, a JSON field that can
    // accept a name or number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 23:57:45 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. src/internal/sysinfo/cpuinfo_linux.go

    	if err != nil && err != io.ErrUnexpectedEOF {
    		return err
    	}
    
    	return nil
    }
    
    func osCPUInfoName() string {
    	modelName := ""
    	cpuMHz := ""
    
    	// The 512-byte buffer is enough to hold the contents of CPU0
    	buf := make([]byte, 512)
    	err := readLinuxProcCPUInfo(buf)
    	if err != nil {
    		return ""
    	}
    
    	scanner := bufio.NewScanner(bytes.NewReader(buf))
    	for scanner.Scan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ChangingProvider.java

    import java.io.Serializable;
    import java.util.concurrent.Callable;
    
    /**
     * A provider whose value is computed by a {@link Callable}.
     *
     * The given {@link Callable} is stored to the configuration cache, so it must only hold references
     * to configuration cache safe state.
     *
     * Task dependencies attached to the computed value are ignored by this provider.
     *
     * <h3>Configuration Cache Behavior</h3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 04 21:04:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tensorflow/c/eager/gradient_checker.h

     * this will calculate dy/dw numerically.
     *
     * `use_function` indicates whether to use graph mode(true) or eager(false).
     *
     * `numerical_grad` is the pointer to the AbstractTensorHandle* which will
     * hold the numerical gradient data at the end of the function.
     */
    Status CalcNumericalGrad(AbstractContext* ctx, Model forward,
                             absl::Span<AbstractTensorHandle* const> inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 02:34:32 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/environment/kube/flags.go

    		LoadBalancerSupported: true,
    		Architecture:          ArchAMD64,
    	}
    	// hold kubeconfigs from command line to split later
    	kubeConfigs string
    	// hold controlPlaneTopology from command line to parse later
    	controlPlaneTopology string
    	// hold networkTopology from command line to parse later
    	networkTopology string
    	// hold configTopology from command line to parse later
    	configTopology string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/internal/poll/sock_cloexec_solaris.go

    		if err != nil {
    			return -1, nil, "accept4", err
    		}
    		return ns, sa, "", nil
    	}
    
    	// See ../syscall/exec_unix.go for description of ForkLock.
    	// It is probably okay to hold the lock across syscall.Accept
    	// because we have put fd.sysfd into non-blocking mode.
    	// However, a call to the File method will put it back into
    	// blocking mode. We can't take that risk, so no use of ForkLock here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/runtime/netpoll_windows.go

    	netpollSourceTimer
    )
    
    const (
    	// sourceBits is the number of bits needed to represent a source.
    	// 4 bits can hold 16 different sources, which is more than enough.
    	// It is set to a low value so the overlapped entry key can
    	// contain as much bits as possible for the pollDesc pointer.
    	sourceBits  = 4 // 4 bits can hold 16 different sources, which is more than enough.
    	sourceMasks = 1<<sourceBits - 1
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/race.go

    // license that can be found in the LICENSE file.
    
    //go:build !compiler_bootstrap
    
    package test
    
    // The racecompile builder only builds packages, but does not build
    // or run tests. This is a non-test file to hold cases that (used
    // to) trigger compiler data races, so they will be exercised on
    // the racecompile builder.
    //
    // This package is not imported so functions here are not included
    // in the actual compiler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 22:16:41 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

        InternetDomainName domain = InternetDomainName.from("foo.city.yokohama.jp");
        assertTrue(domain.hasPublicSuffix());
        assertEquals("yokohama.jp", domain.publicSuffix().toString());
    
        // Behold the weirdness!
        assertFalse(domain.publicSuffix().isPublicSuffix());
      }
    
      public void testPublicSuffixMultipleUnders() {
        // PSL has both *.uk and *.sch.uk; the latter should win.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top