Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 410 for 1011 (0.03 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/core/test/test-extension/1/test-extension-1.pom

          <artifactId>plexus-utils</artifactId>
          <version>1.1</version>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus</artifactId>
          <version>1.0.11</version>
          <type>pom</type>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-component-api</artifactId>
          <version>1.0-alpha-16</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_386.s

    	BSWAPL	BX	// reverse order of bytes
    	BSWAPL	CX
    	XORL	BX, CX	// find bit differences
    	BSRL	CX, CX	// index of highest bit difference
    	SHRL	CX, BX	// move a's bit to bottom
    	ANDL	$1, BX	// mask bit
    	LEAL	-1(BX*2), BX // 1/0 => +1/-1
    	MOVL	BX, (AX)
    	RET
    
    	// 0-3 bytes in common
    small:
    	LEAL	(BP*8), CX
    	NEGL	CX
    	JEQ	allsame
    
    	// load si
    	CMPB	SI, $0xfc
    	JA	si_high
    	MOVL	(SI), SI
    	JMP	si_finish
    si_high:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

            }
    
        }
    
        def "should fail during conflict resolution transitive dependency rejects"() {
            given:
            repository {
                'org:foo' {
                    '1.0'()
                    '1.1'()
                }
                'org:bar:1.0' {
                    dependsOn(group: 'org', artifact: 'foo', version: '1.0', rejects: ['1.1']) // transitive dependency rejects version
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. cluster/addons/cluster-loadbalancing/glbc/default-svc-controller.yaml

            # Any image is permissible as long as:
            # 1. It serves a 404 page at /
            # 2. It serves 200 on a /healthz endpoint
            image:  registry.k8s.io/networking/ingress-gce-404-server-with-metrics-amd64:v1.10.11
            livenessProbe:
              httpGet:
                path: /healthz
                port: 8080
                scheme: HTTP
              initialDelaySeconds: 30
              timeoutSeconds: 5
            ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/ExactVersionSelectorTest.groovy

        }
    
        def "accepts candidate version iff it literally matches the selector"() {
            expect:
            accept("", "")
            accept("1.0", "1.0")
            accept("2.0", "2.0")
            accept("!@#%", "!@#%")
            accept("hey joe", "hey joe")
            !accept("1.0", "1.1")
            !accept("2.0", "3.0")
            !accept("!@#%", "%#@!")
            !accept("hey joe", "hoe hey")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-containers/1.0-alpha-32/plexus-containers-1.0-alpha-32.pom

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.codehaus.plexus</groupId>
        <artifactId>plexus</artifactId>
        <version>1.0.11</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-containers</artifactId>
      <packaging>pom</packaging>
      <name>Parent Plexus Container POM</name>
      <version>1.0-alpha-32</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.11</version>
        <relativePath>../pom/pom.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>plexus-utils</artifactId>
      <name>Plexus Common Utilities</name>
      <version>1.4.5</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/dynamicversions/TwoStageModuleVersionsCacheTest.groovy

            then:
            1 * writeCache.store(key, entry)
            0 * readCache._
        }
    
        def "reading aggregates read and write caches"() {
            def r1 = new ModuleVersionsCacheEntry(["1.0", "1.1"] as Set, 0L)
            def r2 = new ModuleVersionsCacheEntry(["1.2", "1.3"]  as Set, 123L)
    
            when:
            def result = twoStageCache.get(key)
    
            then:
            1 * readCache.get(key) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

        // CHECK-SAME: device = "/job:localhost/replica:0/task:0/device:TPU:0"
        %1:3 = tf_executor.island wraps "tf.IdentityN"(%arg0, %arg1) : (tensor<i64>, tensor<i32>) -> (tensor<i64>, tensor<i32>)
        tf_executor.fetch %1#0, %1#1 : tensor<i64>, tensor<i32>
      }
      func.return %0#0, %0#1 : tensor<i64>, tensor<i32>
    }
    
    // CHECK-LABEL: func @testShapeOp
    // CHECK-SAME: ({{%.+}}: tensor<*xi64> {tf.device = "/job:localhost/replica:0/task:0/device:TPU:0"})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  10. src/encoding/json/number_test.go

    		"1.0.1",
    		"1..1",
    		"-1-2",
    		"012a42",
    		"01.2",
    		"012",
    		"12E12.12",
    		"1e2e3",
    		"1e+-2",
    		"1e--23",
    		"1e",
    		"e1",
    		"1e+",
    		"1ea",
    		"1a",
    		"1.a",
    		"1.",
    		"01",
    		"1.e1",
    	}
    
    	for _, test := range invalidTests {
    		if isValidNumber(test) {
    			t.Errorf("%s should be invalid", test)
    		}
    
    		var f float64
    		if err := Unmarshal([]byte(test), &f); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 05:40:28 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top