Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 126 for b1 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def f1 = mavenHttpRepo.module('org.foo', 'f')
    
            a1.dependsOn(c1).publish()
            c1.publish()
    
            d1.dependsOn(b1).publish()
            b1.dependsOn(f1).publish()
            f1.publish()
            e1.dependsOn(b2).publish()
            b2.publish()
    
            buildFile << """
                dependencies {
                    implementation 'org.foo:a:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

                }
            });
    
            for (int i = 0; i < blocks.size() - 1; i++) {
                Block b1 = blocks.get(i).getBlock();
                Block b2 = blocks.get(i + 1).getBlock();
                if (b1.getPos().getPos() + b1.getSize() > b2.getPos().getPos()) {
                    throw new IOException(String.format("%s overlaps with %s", b1, b2));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/issues0.go

    		nosuchpkg /* ERROR "undefined: nosuchpkg" */ .Nosuchtype
    	}
    	type I interface {
    		I.m /* ERROR "I.m is not a type" */
    		m()
    	}
    }
    
    // issue11347
    // These should not crash.
    var a1, b1, c1 /* ERROR "cycle" */ b1 /* ERROR "b1 is not a type" */ = 0 > 0<<""[""[c1]]>c1
    var a2, b2 /* ERROR "cycle" */ = 0 /* ERROR "assignment mismatch" */ /* ERROR "assignment mismatch" */ > 0<<""[b2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_LT_Y, "1.0-a1", "1.0");
            assertOrder(X_LT_Y, "1.0.a1", "1.0");
            assertOrder(X_LT_Y, "1.0b1", "1.0");
            assertOrder(X_LT_Y, "1.0-b1", "1.0");
            assertOrder(X_LT_Y, "1.0.b1", "1.0");
            assertOrder(X_LT_Y, "1.0m1", "1.0");
            assertOrder(X_LT_Y, "1.0-m1", "1.0");
            assertOrder(X_LT_Y, "1.0.m1", "1.0");
    
            assertOrder(X_GT_Y, "1.0a.1", "1.0");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/ExternalResourceNameTest.groovy

            URI.create("http://host")                    | "\u007b\u007f\u0080\u03b1\u07ff\u0800\u30b1\ufffe" | URI.create("http://host/")              | "/\u007b\u007f\u0080\u03b1\u07ff\u0800\u30b1\ufffe" | "http://host/%7B%7F%C2%80%CE%B1%DF%BF%E0%A0%80%E3%82%B1%EF%BF%BE"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pkg/controller/podgc/gc_controller_test.go

    					Value: "any-value", Effect: v1.TaintEffectNoExecute}}},
    			},
    			pods: []nameToPodConfig{
    				// pods a1, b1, c1, d1 and e1 are on node worker-0
    				{name: "a1", nodeName: "worker-0"},
    				{name: "b1", deletionTimeStamp: &metav1.Time{}, nodeName: "worker-0"},
    				{name: "c1", phase: v1.PodPending, nodeName: "worker-0"},
    				{name: "d1", phase: v1.PodRunning, nodeName: "worker-0"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. src/compress/flate/deflate_test.go

    	}
    	w.Write([]byte(dict))
    	w.Flush()
    	b.Reset()
    	w.Write([]byte(text))
    	w.Close()
    
    	var b1 bytes.Buffer
    	w, _ = NewWriterDict(&b1, 5, []byte(dict))
    	w.Write([]byte(text))
    	w.Close()
    
    	if !bytes.Equal(b1.Bytes(), b.Bytes()) {
    		t.Fatalf("writer wrote %q want %q", b1.Bytes(), b.Bytes())
    	}
    }
    
    // See https://golang.org/issue/2508
    func TestRegression2508(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

                task resolveArtifacts(type: Copy) {
                    from configurations.compileClasspath
                    into 'libs'
                }
    """
    
            buildB = multiProjectBuild("buildB", ['b1', 'b2']) {
                buildFile << """
                    allprojects {
                        apply plugin: 'java'
                    }
    """
            }
            includedBuilds << buildB
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    			data:           []byte(`{"apiVersion":"b1/c1"}`),
    			into:           &testDecodable{TypeMeta: metav1.TypeMeta{Kind: "a3", APIVersion: "b1/c1"}},
    			typer:          &mockTyper{gvk: &schema.GroupVersionKind{Kind: "a3", Group: "b1", Version: "c1"}},
    			defaultGVK:     nil,
    			creater:        &mockCreater{obj: &testDecodable{}},
    			expectedObject: &testDecodable{TypeMeta: metav1.TypeMeta{Kind: "a3", APIVersion: "b1/c1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-RSA

    00000260  3d 43 d3 2d d9 0b f2 97  df d3 20 64 38 92 24 3a  |=C.-...... d8.$:|
    00000270  00 bc cf 9c 7d b7 40 20  01 5f aa d3 16 61 09 a2  |....}.@ ._...a..|
    00000280  76 fd 13 c3 cc e1 0c 5c  ee b1 87 82 f1 6c 04 ed  |v......\.....l..|
    00000290  73 bb b3 43 77 8d 0c 1c  f1 0f a1 d8 40 83 61 c9  |s..Cw.......@.a.|
    000002a0  4c 72 2b 9d ae db 46 06  06 4d f4 c1 b3 3e c0 d1  |Lr+...F..M...>..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top