Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,208 for xoring (0.12 sec)

  1. src/crypto/tls/quic_test.go

    	if err := runTestQUICConnection(context.Background(), cli, srv, nil); err != nil {
    		t.Fatalf("error during connection handshake: %v", err)
    	}
    
    	if got, want := string(cli.gotParams), srvParams; got != want {
    		t.Errorf("client got transport params: %q, want %q", got, want)
    	}
    	if got, want := string(srv.gotParams), cliParams; got != want {
    		t.Errorf("server got transport params: %q, want %q", got, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// a secret in the cluster during the uploadcerts init phase.
    	// The certificate key is a hex encoded string that is an AES key of size 32 bytes.
    	// +optional
    	CertificateKey string `json:"certificateKey,omitempty"`
    
    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    }
    
    // GetPodKey returns the string key of a pod.
    func GetPodKey(pod *v1.Pod) (string, error) {
    	uid := string(pod.UID)
    	if len(uid) == 0 {
    		return "", errors.New("cannot get cache key for pod with empty UID")
    	}
    	return uid, nil
    }
    
    // GetNamespacedName returns the string format of a namespaced resource name.
    func GetNamespacedName(namespace, name string) string {
    	return fmt.Sprintf("%s/%s", namespace, name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

        /**
         * Sets whether directories should be considered during up-to-date checks and build cache key calculations.  Defaults to false.
         *
         * See {@link #ignoreEmptyDirectories()}.
         *
         * @since 6.8
         */
        TaskInputFilePropertyBuilder ignoreEmptyDirectories(boolean ignoreEmptyDirectories);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

             */
            Set<String> getPropertyAttributes();
    
            /**
             * Returns the absolute path of the currently visited location.
             */
            String getPath();
    
            /**
             * Returns the name of the currently visited location, as in {@link File#getName()}
             */
            String getName();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

    import org.gradle.tooling.GradleConnector
    import org.gradle.tooling.ProjectConnection
    import org.gradle.tooling.model.GradleProject
    
    class CancellationCrossVersionSpec extends CancellationSpec {
    
        def "can cancel build during settings phase"() {
            setupCancelInSettingsBuild()
    
            def cancel = GradleConnector.newCancellationTokenSource()
            def sync = server.expectAndBlock("registered")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /Received \d+ file system events during the current build while watching \d+ locations/
            result.output =~ /Virtual file system retains information about \d+ files, \d+ directories and \d+ missing files until next build/
            result.output =~ /VFS> Statistics during current build:/
            result.output =~ /VFS> > Stat: Executed stat\(\) x .*. getUnixMode\(\) x .*/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Gets the dependency configuration for which to declare runtime-only dependencies.
         * Dependencies declared on this configuration are present only during runtime, are not
         * present during compilation, and are not exposed as part of the feature's API variant.
         *
         * @return The {@code runtimeOnly} configuration.
         */
        Configuration getRuntimeOnlyConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/go/types/predicates.go

    // identical.
    func identicalInstance(xorig Type, xargs []Type, yorig Type, yargs []Type) bool {
    	if len(xargs) != len(yargs) {
    		return false
    	}
    
    	for i, xa := range xargs {
    		if !Identical(xa, yargs[i]) {
    			return false
    		}
    	}
    
    	return Identical(xorig, yorig)
    }
    
    // Default returns the default "typed" type for an "untyped" type;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/multi_project_configuration_and_execution.adoc

    Any direct modification or reading of another project's object creates coupling between the projects.
    Coupling during configuration can result in flawed build outcomes when using 'configuration on demand', while coupling during execution can affect parallel execution.
    
    One common source of coupling is configuration injection, such as using `allprojects{}` or `subprojects{}` in build scripts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 21:08:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top