Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for 12352 (0.07 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

       ([#123527](https://github.com/kubernetes/kubernetes/pull/123527), [@aramase](https://github.com/aramase))
    - The `StorageVersionMigration` API, previously available as a Custom Resource Definition (CRD), is now a built-in API in Kubernetes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2'}, 3, new char[] {'2', '1'});
    
        testRotate(new char[] {'1', '2', '3'}, -5, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -4, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, -3, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, -2, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -1, new char[] {'2', '3', '1'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

                    implementation 'commons-lang:commons-lang:2.6'
                    testImplementation "com.google.guava:guava:17.0"
                    testImplementation "org.scalatestplus.play:scalatestplus-play_2.12:3.1.2"
                    implementation "ch.qos.logback:logback-classic:1.2.3"
                }
            """
    
            when:
            def result = runner('build')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/util/node/node_test.go

    				{Type: v1.NodeExternalIP, Address: "1.2.3.5"},
    				{Type: v1.NodeExternalIP, Address: "1.2.3.7"},
    			},
    			Preferences:   []v1.NodeAddressType{v1.NodeHostName, v1.NodeExternalIP},
    			ExpectAddress: "1.2.3.5",
    		},
    		"found hostname address": {
    			Labels: map[string]string{v1.LabelHostname: "label-hostname"},
    			Addresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "1.2.3.5"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_toolchain.txt

    grep 'go 1.22.1' go.mod
    go get m2@v1.0.0
    stderr '^go: upgraded go 1.22.1 => 1.23$'
    stderr '^go: added m2 v1.0.0$'
    grep 'go 1.23$' go.mod
    
    go get toolchain@go1.23.9 go@1.23.5
    go get toolchain@none
    stderr '^go: removed toolchain go1.23.9'
    ! stderr ' go 1'
    grep 'go 1.23.5' go.mod
    
    -- go.mod --
    module m
    go 1.10
    
    replace m2 v1.0.0 => ./m2
    
    -- m2/go.mod --
    module m2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 22:42:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. internal/mountinfo/mountinfo_linux_test.go

    		if !mountPointsEqual(mounts[1], mp) {
    			t.Errorf("got unexpected mountInfo[1]: %#v", mounts[1])
    		}
    		mp = mountInfo{"/dev/2", "/path/to/2", "type2", []string{"flags", "1", "2=3"}, "2", "2"}
    		if !mountPointsEqual(mounts[2], mp) {
    			t.Errorf("got unexpected mountInfo[2]: %#v", mounts[2])
    		}
    	}
    	// Failure case mounts path doesn't exist, if not fail.
    	{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2}, 3, new short[] {2, 1});
    
        testRotate(new short[] {1, 2, 3}, -5, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, -4, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, -3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, -2, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, -1, new short[] {2, 3, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/RegularFileSnapshotTest.groovy

        @Override
        protected FileSystemLeafSnapshot createInitialRootNode(String absolutePath, AccessType accessType) {
            return new RegularFileSnapshot(absolutePath, PathUtil.getFileName(absolutePath), TestHashCodes.hashCodeFrom(1235), DefaultFileMetadata.file(1, 2, accessType))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        testRotate(new double[] {1, 2}, 3, new double[] {2, 1});
    
        testRotate(new double[] {1, 2, 3}, -5, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -4, new double[] {2, 3, 1});
        testRotate(new double[] {1, 2, 3}, -3, new double[] {1, 2, 3});
        testRotate(new double[] {1, 2, 3}, -2, new double[] {3, 1, 2});
        testRotate(new double[] {1, 2, 3}, -1, new double[] {2, 3, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/IntsTest.java

        testRotate(new int[] {1, 2}, 3, new int[] {2, 1});
    
        testRotate(new int[] {1, 2, 3}, -5, new int[] {3, 1, 2});
        testRotate(new int[] {1, 2, 3}, -4, new int[] {2, 3, 1});
        testRotate(new int[] {1, 2, 3}, -3, new int[] {1, 2, 3});
        testRotate(new int[] {1, 2, 3}, -2, new int[] {3, 1, 2});
        testRotate(new int[] {1, 2, 3}, -1, new int[] {2, 3, 1});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
Back to top