Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 9,695 for ADD (0.03 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

            blockElements.add("tbody");
            blockElements.add("tr");
            blockElements.add("dl");
            blockElements.add("dt");
            blockElements.add("dd");
    
            blockContent.add("ul");
            blockContent.add("ol");
            blockContent.add("table");
            blockContent.add("thead");
            blockContent.add("tbody");
            blockContent.add("tr");
            blockContent.add("dl");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  2. src/runtime/hash64.go

    				seed = mix(r8(p)^hashkey[1], r8(add(p, 8))^seed)
    				seed1 = mix(r8(add(p, 16))^hashkey[2], r8(add(p, 24))^seed1)
    				seed2 = mix(r8(add(p, 32))^hashkey[3], r8(add(p, 40))^seed2)
    				p = add(p, 48)
    			}
    			seed ^= seed1 ^ seed2
    		}
    		for ; l > 16; l -= 16 {
    			seed = mix(r8(p)^hashkey[1], r8(add(p, 8))^seed)
    			p = add(p, 16)
    		}
    		a = r8(add(p, l-16))
    		b = r8(add(p, l-8))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:39:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. cmd/metacache_test.go

    		status:       scanStateError,
    		fileNotFound: false,
    		error:        "an error lol",
    		started:      metaCacheTestsetTimestamp.Add(-20 * time.Minute),
    		ended:        metaCacheTestsetTimestamp.Add(-20 * time.Minute),
    		lastUpdate:   metaCacheTestsetTimestamp.Add(-20 * time.Minute),
    		lastHandout:  metaCacheTestsetTimestamp.Add(-20 * time.Minute),
    		dataVersion:  metacacheStreamVersion,
    	},
    	4: {
    		id:           "case-5-noupdate",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            List<String> msgs = new ArrayList<>();
            msgs.add("*****************************************************************");
            msgs.add("* Your build is requesting parallel execution, but project      *");
            msgs.add("* contains the following plugin(s) that have goals not marked   *");
            msgs.add("* as @threadSafe to support parallel building.                  *");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectSetSpec.groovy

            when:
            container.add(bean1);
            container.add(bean2);
            container.add(bean3);
    
            then:
            container.matching(spec) as List == [bean2]
        }
    
        def getAllMatchingDomainObjectsReturnsEmptySetWhenNoMatches() {
            Spec<Bean> spec = {false} as Spec<Bean>
    
            when:
            container.add(new Bean("a"));
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            def rule6 = rule("path", ModelNode.State.Finalized)
    
            given:
            bindings.add(rule1)
            bindings.add(rule2)
            bindings.add(rule3)
            bindings.add(rule4)
            bindings.add(rule5)
            bindings.add(rule6)
            addNode(node("path", Long))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/partitioned-topological-sort.mlir

    // CHECK-NEXT: %[[TMP3:.*]] = tfl.add %[[CONST]], %[[TMP2]]
    // CHECK-NEXT: %[[RESULT:.*]] = tfl.add %[[TMP3]], %[[TMP4]]
    // CHECK-NEXT: return %[[RESULT]]
    
    // CHECK-LABEL: @tf_ops_will_not_be_partitioned_if_not_schedulable
    func.func @tf_ops_will_not_be_partitioned_if_not_schedulable() -> tensor<1xf32> {
      %const = "tfl.pseudo_const"() {value = dense<[1.0]> : tensor<1xf32>} : () -> tensor<1xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 22:33:49 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. src/time/mono_test.go

    	}
    	if t2.After(t1) {
    		t.Errorf("Now().Add(-5*Second).After(Now().Add(1*Hour)) = true, want false\nt1=%v\nt2=%v", t1, t2)
    	}
    	if t1.Before(t2) {
    		t.Errorf("Now().Add(1*Hour).Before(Now().Add(-5*Second)) = true, want false\nt1=%v\nt2=%v", t1, t2)
    	}
    	if !t2.Before(t1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                args.add("-bootclasspath");
                args.add(bootClasspath);
            }
            if (compileOptions.getExtensionDirs() != null) {
                args.add("-extdirs");
                args.add(compileOptions.getExtensionDirs());
            }
            if (compileOptions.getHeaderOutputDirectory() != null) {
                args.add("-h");
                args.add(compileOptions.getHeaderOutputDirectory().getPath());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddAtIndexTester.java

        try {
          getList().add(0, e0());
          fail("add(n, present) should throw");
        } catch (UnsupportedOperationException expected) {
        }
        expectUnchanged();
      }
    
      @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
      public void testAddAtIndex_supportedNotPresent() {
        getList().add(0, e3());
        expectAdded(0, e3());
      }
    
      @CollectionFeature.Require(FAILS_FAST_ON_CONCURRENT_MODIFICATION)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top