Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,566 for ADD (0.07 sec)

  1. src/cmd/go/internal/envcmd/env_test.go

    	"runtime"
    	"testing"
    	"unicode"
    )
    
    func FuzzPrintEnvEscape(f *testing.F) {
    	f.Add(`$(echo 'cc"'; echo 'OOPS="oops')`)
    	f.Add("$(echo shell expansion 1>&2)")
    	f.Add("''")
    	f.Add(`C:\"Program Files"\`)
    	f.Add(`\\"Quoted Host"\\share`)
    	f.Add("\xfb")
    	f.Add("0")
    	f.Add("")
    	f.Add("''''''''")
    	f.Add("\r")
    	f.Add("\n")
    	f.Add("E,%")
    	f.Fuzz(func(t *testing.T, s string) {
    		t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/services/NativeBinaryServices.java

            registration.add(NativeBinaryRenderer.class);
            registration.add(SharedLibraryBinaryRenderer.class);
            registration.add(StaticLibraryBinaryRenderer.class);
            registration.add(NativeExecutableBinaryRenderer.class);
            registration.add(NativePlatforms.class);
            registration.add(NativePlatformResolver.class);
            registration.add(DefaultTargetMachineFactory.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ToolchainsJvmServices.java

                registration.add(MavenToolchainsInstallationSupplier.class);
    
                registration.add(LinuxInstallationSupplier.class);
                registration.add(OsXInstallationSupplier.class);
                registration.add(WindowsInstallationSupplier.class);
            }
        }
    
        @Override
        public void registerBuildSessionServices(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonClientToolchainServices.java

            registration.add(ToolchainConfiguration.class, toolchainConfiguration);
            registration.add(DefaultOsXJavaHomeCommand.class);
    
            // NOTE: These need to be kept in sync with ToolchainsJvmServices
            registration.add(AsdfInstallationSupplier.class);
            registration.add(IntellijInstallationSupplier.class);
            registration.add(JabbaInstallationSupplier.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. pkg/kubelet/config/config_test.go

    	// see an update
    	podUpdate := CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "default"))
    	channel <- podUpdate
    	expectPodUpdate(t, ch, CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "default")))
    
    	// see an update in another namespace
    	podUpdate = CreatePodUpdate(kubetypes.ADD, TestSource, CreateValidPod("foo", "new"))
    	channel <- podUpdate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/pipelines/process_nchw_tensor.mlir

    // CHECK: %[[ADD:.+]] = stablehlo.add %[[TRANSPOSE_1]], %[[ARG_1]] : tensor<1x4x5x5xf32>
    // CHECK: return %[[ADD]]
    
    // -----
    
    // Tests that a `reduce_window{max}(add(convolution(%activation, %weight), %bias), %init_value)`
    // with the activation tensor of NCHW format is converted to NHWC convolution +
    // add + reduce_window (with max) operation. Transpose ops are inserted to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_ppc64x.s

    #define ROUND1(a, b, c, d, index, const, shift) \
    	ADD	$const, index, R9; \
    	ADD	R9, a; \
    	AND     b, c, R9; \
    	ANDN    b, d, R31; \
    	OR	R9, R31, R9; \
    	ADD	R9, a; \
    	ROTLW	$shift, a; \
    	ADD	b, a;
    
    #define ROUND2(a, b, c, d, index, const, shift) \
    	ADD	$const, index, R9; \
    	ADD	R9, a; \
    	AND	b, d, R31; \
    	ANDN	d, c, R9; \
    	OR	R9, R31; \
    	ADD	R31, a; \
    	ROTLW	$shift, a; \
    	ADD	b, a;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/PosixFilePermissionConverter.java

            if (isSet(mode, 0400)) {
                result.add(OWNER_READ);
            }
            if (isSet(mode, 0200)) {
                result.add(OWNER_WRITE);
            }
            if (isSet(mode, 0100)) {
                result.add(OWNER_EXECUTE);
            }
    
            if (isSet(mode, 040)) {
                result.add(GROUP_READ);
            }
            if (isSet(mode, 020)) {
                result.add(GROUP_WRITE);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeScopeServices.java

            registration.add(DefaultConfigurationTimeBarrier.class);
            registration.add(DeprecationsReporter.class);
            registration.add(TaskPathProjectEvaluator.class);
            registration.add(DefaultFeatureFlags.class);
            registration.add(DefaultProblemLocationAnalyzer.class);
            registration.add(DefaultProblemDiagnosticsFactory.class);
            registration.add(DefaultExceptionAnalyser.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/runtime/map_fast64.go

    		x.k = add(unsafe.Pointer(x.b), dataOffset)
    		x.e = add(x.k, abi.MapBucketCount*8)
    
    		if !h.sameSizeGrow() {
    			// Only calculate y pointers if we're growing bigger.
    			// Otherwise GC can see bad pointers.
    			y := &xy[1]
    			y.b = (*bmap)(add(h.buckets, (oldbucket+newbit)*uintptr(t.BucketSize)))
    			y.k = add(unsafe.Pointer(y.b), dataOffset)
    			y.e = add(y.k, abi.MapBucketCount*8)
    		}
    
    		for ; b != nil; b = b.overflow(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top