Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 9,695 for ADD (0.03 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

            def filtered = composite.matching { it > "d" }
    
            expect:
            filtered.toList() == ["j", "k"]
    
            when:
            component1.add("c")
            component1.add("l")
            component2.add("d")
            component2.add("m")
    
            then:
            filtered.toList() == ["j", "l", "k", "m"]
    
            when:
            component1.remove("c")
            component1.remove("l")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompilerArgsTransformer.java

            if (!needsStandardIncludes(spec.getTargetPlatform())) {
                args.add("-nostdinc");
            }
    
            for (File file : spec.getIncludeRoots()) {
                args.add("-I");
                args.add(file.getAbsolutePath());
            }
    
            for (File file : spec.getSystemIncludeRoots()) {
                args.add("-isystem");
                args.add(file.getAbsolutePath());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.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. okhttp/src/test/java/okhttp3/CertificatePinnerTest.kt

        val builder = CertificatePinner.Builder()
        assertFailsWith<IllegalArgumentException> {
          builder.add("example.com", "md5/DmxUShsZuNiqPQsX2Oi9uv2sCnw=")
        }
      }
    
      @Test
      fun malformedBase64() {
        val builder = CertificatePinner.Builder()
        assertFailsWith<IllegalArgumentException> {
          builder.add("example.com", "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw*")
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list.all(action)
    
            when:
            list.add(0, 'a')
            list.add(0, 'b')
    
            then:
            1 * action.execute('a')
            1 * action.execute('b')
            0 * action._
        }
    
        def "cannot add duplicate element by adding element at given index"() {
            given:
            list.add('a')
    
            when:
            list.add(1, 'a')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java

        testers.add(CollectionSerializationEqualTester.class);
        testers.add(MultisetAddTester.class);
        testers.add(MultisetContainsTester.class);
        testers.add(MultisetCountTester.class);
        testers.add(MultisetElementSetTester.class);
        testers.add(MultisetEqualsTester.class);
        testers.add(MultisetForEachEntryTester.class);
        testers.add(MultisetReadsTester.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/UserDbm.java

            ls.add(columnGivenName());
            ls.add(columnGroups());
            ls.add(columnHomeDirectory());
            ls.add(columnHomePhone());
            ls.add(columnHomePostalAddress());
            ls.add(columnInitials());
            ls.add(columnInternationaliSDNNumber());
            ls.add(columnLabeledURI());
            ls.add(columnMail());
            ls.add(columnMobile());
            ls.add(columnName());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/MutableActionSetTest.groovy

            def action = Mock(Action)
            broadcast.add(action)
    
            when:
            broadcast.execute('value')
    
            then:
            1 * action.execute('value')
            0 * action._
        }
    
        def broadcastsEventsToMultipleActions() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            broadcast.add(action1)
            broadcast.add(action2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top