Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 500 for uuid3 (0.06 sec)

  1. security/pkg/credentialfetcher/plugin/gce_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package plugin
    
    import (
    	"fmt"
    	"os"
    	"testing"
    	"time"
    
    	"github.com/google/uuid"
    
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var (
    	// thirdPartyJwt is generated in a testing K8s cluster, using the "istio-token" projected volume.
    	// Token is issued at 2020-04-04 22:13:54 Pacific Daylight time.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  2. cmd/metacache-marker.go

    			if err != nil {
    				o.ID = mustGetUUID()
    				o.Create = true
    				continue
    			}
    			o.set = int(v)
    		default:
    			// Ignore unknown
    		}
    	}
    }
    
    // encodeMarker will encode a uuid and return it as a marker.
    // uuid cannot contain '[', ':' or ','.
    func (o listPathOptions) encodeMarker(marker string) string {
    	if o.ID == "" {
    		// Mark as returning listing...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. cmd/mrf.go

    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    					healObject(u.bucket, u.object, u.versionID, scan)
    				}
    			}
    
    			wait()
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    // FindGlobalMapPathUUIDFromPod finds {pod uuid} bind mount under globalMapPath
    // corresponding to map path symlink, and then return global map path with pod uuid.
    // (See pkg/volume/volume.go for details on a global map path and a pod device map path.)
    // ex. mapPath symlink: pods/{podUid}}/{DefaultKubeletVolumeDevicesDirName}/{escapeQualifiedPluginName}/{volumeName} -> /dev/sdX
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/ReportStatusDispatcherTest.groovy

        def dispatcher = new ReportStatusDispatcher()
        def connection = Mock(Connection)
    
        def "ignores failed dispatch and does not receive"() {
            given:
            def message = new ReportStatus(UUID.randomUUID(), "TOKEN".bytes)
            connection.dispatch(message) >> { throw new RuntimeException("Cannot dispatch") }
    
            when:
            dispatcher.dispatch(connection, message)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/StopDispatcherTest.groovy

            given:
            def message = new Stop(UUID.randomUUID())
            connection.dispatch(message) >> { throw new RuntimeException("Cannot dispatch") }
    
            when:
            dispatcher.dispatch(connection, message)
    
            then:
            0 * connection.receive()
            noExceptionThrown()
        }
    
        def "ignores failed receive"() {
            given:
            def message = new Stop(UUID.randomUUID())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/AbstractCompileAvoidanceIntegrationTest.kt

    import org.hamcrest.MatcherAssert
    import org.junit.Before
    import java.io.File
    import java.util.UUID
    
    
    abstract class AbstractCompileAvoidanceIntegrationTest : AbstractKotlinIntegrationTest() {
    
        companion object CacheBuster {
            var cacheBuster = UUID.randomUUID()
        }
    
        @Before
        fun init() {
            cacheBuster = UUID.randomUUID()
    
            withDefaultSettings().appendText(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. schema/naming_test.go

    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue May 30 02:00:48 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Build.java

    import org.gradle.launcher.exec.BuildActionParameters;
    
    import java.util.UUID;
    
    public class Build extends Command {
        private final BuildAction action;
        private final GradleLauncherMetaData buildClientMetaData;
        private final long startTime;
        private final boolean interactive;
        private final BuildActionParameters parameters;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientServices.java

    import org.gradle.launcher.daemon.context.DaemonCompatibilitySpec;
    import org.gradle.launcher.daemon.context.DaemonRequestContext;
    
    import java.io.InputStream;
    import java.util.UUID;
    
    /**
     * Takes care of instantiating and wiring together the services required by the daemon client.
     */
    public class DaemonClientServices extends DaemonClientServicesSupport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top