Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 8,871 for ADD (0.08 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindingExtractionContext.java

        }
    
        @Override
        public void add(String problem) {
            problems.add(problem);
        }
    
        @Override
        public void add(Field field, String problem) {
            problems.add(field, problem);
        }
    
        @Override
        public void add(WeaklyTypeReferencingMethod<?, ?> method, String problem) {
            add(method.getMethod(), problem);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache_test.go

    	c.Add("elem2", "2", 10*time.Hour)
    	c.Add("elem3", "3", 10*time.Hour)
    	c.Add("elem4", "4", 10*time.Hour)
    
    	c.Add("elem1", "1-new", 10*time.Hour)
    
    	c.Add("elem5", "5", 10*time.Hour)
    
    	assertKeys(t, c.Keys(), []interface{}{"elem3", "elem4", "elem1", "elem5"})
    
    	expectNotEntry(t, c, "elem2")
    	expectEntry(t, c, "elem1", "1-new")
    	expectEntry(t, c, "elem3", "3")
    	expectEntry(t, c, "elem4", "4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            // Remove
            empty.add(listener).remove(listener).empty
            empty.add(listener).removeAll([listener, listener]).empty
            empty.add(other1).add(listener).remove(listener).remove(other1).empty
            empty.add(other1).add(listener).removeAll([listener, listener]).remove(other1).empty
            empty.add(other1).add(other2).add(listener).remove(listener).removeAll([other1, other2]).empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ["1"]       | _             | ["0"]         | "add to non-empty convention, then append missing"| { it.add("1") ; it.append(notDefined()) }
            null        | _             | ["0"]         | "append to non-empty conventio, then add missing" | { it.append("1") ; it.add(notDefined()) }
            ["1"]       | _             | _             | "add, then add missing, then append"              | { it.add("0") ; it.add(notDefined()) ; it.append("1") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultMethodModelRuleExtractionContext.java

        }
    
        @Override
        public void add(Field field, String problem) {
            problems.add(field, problem);
        }
    
        @Override
        public void add(Method method, String problem) {
            problems.add(method, problem);
        }
    
        @Override
        public void add(Method method, String role, String problem) {
            problems.add(method, role, problem);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tests/tfcompile_test.cc

    TEST(TFCompileTest, Add) {
      AddComp add;
      EXPECT_EQ(add.arg0_data(), add.arg_data(0));
      EXPECT_EQ(add.arg1_data(), add.arg_data(1));
    
      add.arg0() = 1;
      add.arg1() = 2;
      EXPECT_TRUE(add.Run());
      EXPECT_EQ(add.error_msg(), "");
      EXPECT_EQ(add.result0(), 3);
      EXPECT_EQ(add.result0_data()[0], 3);
      EXPECT_EQ(add.result0_data(), add.results()[0]);
    
      add.arg0_data()[0] = 123;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/NativePlatforms.java

            platforms.add(createPlatform(linux, x86));
            platforms.add(createPlatform(linux, armv7));
            platforms.add(createPlatform(linux, aarch64));
    
            platforms.add(createPlatform(osx, x86));
            platforms.add(createPlatform(osx, x64));
            platforms.add(createPlatform(osx, aarch64));
    
            platforms.add(createPlatform(solaris, x64));
            platforms.add(createPlatform(solaris, x86));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         */
        public static void call(DependencyCollector self, FileCollection files) {
            self.add(files);
        }
    
        /**
         * Add a dependency.
         *
         * @param files files to add as a dependency
         * @param configuration an action to configure the dependency
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. test/typeparam/sets.go

    	s1.Add(1)
    	s1.Add(2)
    	s1.Add(3)
    	s1.Add(4)
    	tot := 0
    	s1.Iterate(func(i int) { tot += i })
    	if tot != 10 {
    		panic(fmt.Sprintf("total of %v == %d, want 10", s1, tot))
    	}
    }
    
    func TestFilter() {
    	s1 := _Make[int]()
    	s1.Add(1)
    	s1.Add(2)
    	s1.Add(3)
    	s1.Filter(func(v int) bool { return v%2 == 0 })
    	if vals, want := s1.Values(), []int{2}; !_SliceEqual(vals, want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/helpers_test.go

    	add chain ip testing endpoint-SGOXE6O3-ns2/svc2/tcp/p80__10.180.0.2/80
    	add chain ip testing external-42NFTM6N-ns2/svc2/tcp/p80
    	add chain ip testing firewall-allow-check
    	add chain ip testing firewall-check
    	add chain ip testing mark-for-masquerade
    	add chain ip testing masquerading
    	add chain ip testing service-42NFTM6N-ns2/svc2/tcp/p80
    	add chain ip testing service-ULMVA6XW-ns1/svc1/tcp/p80
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top