Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,085 for Detached (0.41 sec)

  1. cmd/kubeadm/app/discovery/token/token_test.go

    			}
    
    			// Generate signature of the insecure kubeconfig
    			sig, err := tokenjws.ComputeDetachedSignature(string(kubeconfigBytes), test.tokenID, test.tokenSecret)
    			if err != nil {
    				t.Fatalf("cannot compute detached JWS signature: %v", err)
    			}
    
    			// If the JWS signature is delayed, only add the kubeconfig
    			if test.delayedJWSSignaturePatch {
    				test.configMap.data = map[string]string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Calls AddVolumeNode() once with attached set to false.
    // Verifies a single volume/node entry exists.
    // Then calls AddVolumeNode() with attached set to true
    // Verifies volume is attached to the node according to asw.
    func Test_AddVolumeNode_Positive_NewVolumeNewNodeWithFalseAttached(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/IdeaDependenciesProviderTest.groovy

            def result = dependenciesProvider.provide(module)
    
            then:
            result.size() == 0
        }
    
        def "dependency is added from plus detached configuration"() {
            applyPluginToProjects()
            project.apply(plugin: 'java')
    
            def module = project.ideaModule.module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

         * test compiles a native executable that attempts to connect to the console of a given pid.  We use this to verify
         * that the daemon is not attached to any console.  Note that this is the only way to validate this in Windows since
         * there is no way to determine which console (if any) a process is attached to.  We really only have a system call
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectInternal.java

         * dependencies in isolation from the project itself. This is
         * particularly useful if the repositories or configurations
         * needed for resolution shouldn't leak to the project state.
         *
         * @return a detached resolver
         */
        DetachedResolver newDetachedResolver();
    
        /**
         * Returns the property that stored {@link Project#getStatus()}.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                    LOGGER.debug("Gradle daemon process is starting. Waiting for the daemon to detach...");
                    handle.waitForFinish();
                    LOGGER.debug("Gradle daemon process is now detached.");
                } finally {
                    CompositeStoppable.stoppable(execActionFactory).stop();
                }
    
                return daemonGreeter.parseDaemonOutput(outputConsumer.getProcessOutput(), args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/volume/volume.go

    	// On success, returns the device path where the device was attached on the
    	// node.
    	Attach(spec *Spec, nodeName types.NodeName) (string, error)
    
    	// VolumesAreAttached checks whether the list of volumes still attached to the specified
    	// node. It returns a map which maps from the volume spec to the checking result.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pkg/volume/util/operationexecutor/operation_executor.go

    	// If any volume is not attached right now, it will update the actual state of the world to reflect that.
    	// Note that this operation could be operated concurrently with other attach/detach operations.
    	// In theory (but very unlikely in practise), race condition among these operations might mark volume as detached
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            } else if (!jvmComponents.isEmpty()) {
                return jvmComponents.iterator().next();
            }
    
            // TODO: This case should be deprecated.
            // Users should not be able to create detached features with `registerFeature`
            return null;
        }
    
        @Override
        public void withJavadocJar() {
            maybeEmitMissingJavaComponentDeprecation("withJavadocJar()");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. operator/cmd/mesh/uninstall.go

    			if len(pids) <= 30 {
    				message += fmt.Sprintf("%s\n", strings.Join(pids, "\n"))
    			}
    			message += "If you proceed with the uninstall, these proxies will become detached from any control plane" +
    				" and will not function correctly.\n"
    		} else if rev != "" && err != nil {
    			needConfirmation = true
    			message += fmt.Sprintf("Unable to find any proxies pointing to the %s control plane. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top