Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,849 for ADD (0.27 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

      protected List<Class<? extends AbstractTester>> getTesters() {
        List<Class<? extends AbstractTester>> testers = new ArrayList<>();
        testers.add(BiMapEntrySetTester.class);
        testers.add(BiMapPutTester.class);
        testers.add(BiMapInverseTester.class);
        testers.add(BiMapRemoveTester.class);
        testers.add(BiMapClearTester.class);
        return testers;
      }
    
      enum NoRecurse implements Feature<Void> {
        INVERSE;
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/concurrent/src/test/groovy/org/gradle/internal/concurrent/CompositeStoppableTest.groovy

            Stoppable b = Mock()
            stoppable.add(a)
            stoppable.add(b)
    
            when:
            stoppable.stop()
    
            then:
            1 * a.stop()
            1 * b.stop()
        }
    
        def stopsAllElementsWhenOneFailsToStop() {
            Stoppable a = Mock()
            Stoppable b = Mock()
            RuntimeException failure = new RuntimeException()
            stoppable.add(a)
            stoppable.add(b)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

              .add(BigInteger.valueOf(Integer.MAX_VALUE).add(bigI))
              .add(BigInteger.valueOf(Integer.MIN_VALUE).add(bigI))
              .add(BigInteger.ONE.shiftLeft(63).add(bigI))
              .add(BigInteger.ONE.shiftLeft(64).add(bigI));
        }
        TEST_LONGS = testLongsBuilder.build();
        TEST_BIG_INTEGERS = testBigIntegersBuilder.build();
      }
    
      public void testAsUnsignedAndLongValueAreInverses() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/job/SuggestJob.java

                if ("web".equals(systemLastaEnv)) {
                    cmdList.add("-Dlasta.env=" + getExecuteType());
                } else {
                    cmdList.add("-Dlasta.env=" + systemLastaEnv);
                }
            } else if (StringUtil.isNotBlank(lastaEnv)) {
                cmdList.add("-Dlasta.env=" + lastaEnv);
            } else {
                cmdList.add("-Dlasta.env=" + getExecuteType());
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. 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)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

            ArrayList<org.eclipse.aether.scope.DependencyScope> result = new ArrayList<>();
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.COMPILE.id(), DependencyScope.COMPILE.isTransitive(), all()));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.RUNTIME.id(),
                    DependencyScope.RUNTIME.isTransitive(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top