Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for Implementation (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    }
    
                    // Set the context classloader to the bootstrap classloader, to work around how JAXP locates implementation classes
                    // This should ensure that the JAXP classes provided by the JVM are used, rather than some other implementation
                    ClassLoader original = Thread.currentThread().getContextClassLoader();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.h

                                                  TF_Operation* input);
    
    // Request that `desc` be co-located on the device where `op`
    // is placed.
    //
    // Use of this is discouraged since the implementation of device placement is
    // subject to change. Primarily intended for internal libraries
    TF_CAPI_EXPORT extern void TF_ColocateWith(TF_OperationDescription* desc,
                                               TF_Operation* op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  3. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Implementation-Title: Gradle Wrapper org/gradle/wrapper/GradleWrapperMain.class package org.gradle.wrapper; public synchronized class GradleWrapperMain { public static final String GRADLE_USER_HOME_OPTION = g; public static final String GRADLE_USER_HOME_DETAILED_OPTION = gradle-user-home; public static final String GRADLE_QUIET_OPTION = q; public static final String GRADLE_QUIET_DETAILED_OPTION = quiet; public void GradleWrapperMain(); public static void...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_ppc64le.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // This is a port of the s390x asm implementation.
    // to ppc64le.
    
    // Some changes were needed due to differences in
    // the Go opcodes and/or available instructions
    // between s390x and ppc64le.
    
    // 1. There were operand order differences in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    //
    // Typical use of an unwinder looks like:
    //
    //	var u unwinder
    //	for u.init(gp, 0); u.valid(); u.next() {
    //		// ... use frame info in u ...
    //	}
    //
    // Implementation note: This is carefully structured to be pointer-free because
    // tracebacks happen in places that disallow write barriers (e.g., signals).
    // Even if this is stack-allocated, its pointer-receiver methods don't know that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    			klog.InfoS("CRI implementation should be updated to support RuntimeConfig when KubeletCgroupDriverFromCRI feature gate has been enabled. Falling back to using cgroupDriver from kubelet config.")
    			return nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import static org.gradle.api.internal.artifacts.configurations.ConfigurationInternal.InternalState.UNRESOLVED;
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * The default {@link Configuration} implementation.
     */
    @SuppressWarnings("rawtypes")
    public abstract class DefaultConfiguration extends AbstractFileCollection implements ConfigurationInternal, MutationValidator, ResettableConfiguration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    	b := new(Int).SetBytes(bBytes)
    
    	d := new(Int).GCD(x, y, a, b)
    	x.Mul(x, a)
    	y.Mul(y, b)
    	x.Add(x, y)
    
    	return x.Cmp(d) == 0
    }
    
    // euclidExtGCD is a reference implementation of Euclid's
    // extended GCD algorithm for testing against optimized algorithms.
    // Requirements: a, b > 0
    func euclidExtGCD(a, b *Int) (g, x, y *Int) {
    	A := new(Int).Set(a)
    	B := new(Int).Set(b)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    // advance their `virtualStart` (that is, R(next dispatch in virtual world))
    // more slowly than the other queues (which are using more seats than they
    // are allocated).  The implementation has a hack that addresses part of
    // this imbalance but not all of it.  In this test, flow 1 can not use all
    // of its allocation during the first half, and *can* (and does) use all of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    	name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top