Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of about 10,000 for Returns (0.18 sec)

  1. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/console/NativePlatformConsoleDetectorTest.groovy

            }
        }
    
        def "returns null when neither stdout or stderr is attached to console"() {
            given:
            terminals.isTerminal(Terminals.Output.Stdout) >> false
            terminals.isTerminal(Terminals.Output.Stderr) >> false
    
            expect:
            detector.console == null
        }
    
        @Requires(UnitTestPreconditions.SmartTerminalAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/Network.java

       *
       * @throws IllegalArgumentException if {@code node} is not an element of this network
       */
      int inDegree(N node);
    
      /**
       * Returns the count of {@code node}'s {@link #outEdges(Object) outgoing edges} in a directed
       * network. In an undirected network, returns the {@link #degree(Object)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/sync/atomic/doc.go

    //
    //	old = *addr
    //	*addr = new
    //	return old
    //
    // The compare-and-swap operation, implemented by the CompareAndSwapT
    // functions, is the atomic equivalent of:
    //
    //	if *addr == old {
    //		*addr = new
    //		return true
    //	}
    //	return false
    //
    // The add operation, implemented by the AddT functions, is the atomic
    // equivalent of:
    //
    //	*addr += delta
    //	return *addr
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pkg/util/labels/labels.go

    		newLabels[key] = value
    	}
    	newLabels[labelKey] = labelValue
    	return newLabels
    }
    
    // CloneAndRemoveLabel clones the given map and returns a new map with the given key removed.
    // Returns the given map, if labelKey is empty.
    func CloneAndRemoveLabel(labels map[string]string, labelKey string) map[string]string {
    	if labelKey == "" {
    		// Don't need to add a label.
    		return labels
    	}
    	// Clone.
    	newLabels := map[string]string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 17:34:12 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/cache/desired_state_of_world_test.go

    	}
    
    	// Check PluginExists returns true
    	if !dsw.PluginExists(socketPath) {
    		t.Fatalf("PluginExists returns false for the newly added plugin")
    	}
    }
    
    // Calls AddOrUpdatePlugin() to update timestamp of an existing plugin
    // Verifies the timestamp the existing plugin is updated
    // Verifies newly added plugin returns true for PluginExists()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/errors.go

    }
    
    // IsNotFound returns true if and only if err is "key" not found error.
    func IsNotFound(err error) bool {
    	return isErrCode(err, ErrCodeKeyNotFound)
    }
    
    // IsExist returns true if and only if err is "key" already exists error.
    func IsExist(err error) bool {
    	return isErrCode(err, ErrCodeKeyExists)
    }
    
    // IsUnreachable returns true if and only if err indicates the server could not be reached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:39:10 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CppBinary.java

         */
        String getVariantName();
    
        /**
         * Returns the base name of this binary. This is used to calculate output file names.
         */
        String getBaseName();
    
        /**
         * Returns the compilation details.
         */
        CompilationDetails getCompilationDetails();
    
        /**
         * Returns the linkage details.
         */
        LinkageDetails getLinkageDetails();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformOperationDescriptor.java

    public interface TransformOperationDescriptor extends OperationDescriptor {
    
        /**
         * Returns the display name of this transform operation.
         */
        TransformerDescriptor getTransformer();
    
        /**
         * Returns the subject of this transform operation.
         */
        SubjectDescriptor getSubject();
    
        /**
         * Returns the dependencies (other transforms and tasks) of this transform operation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/rest/subresources.go

    	}
    	return handler, nil
    }
    
    // NewConnectOptions returns the versioned object that represents exec parameters
    func (r *AttachREST) NewConnectOptions() (runtime.Object, bool, string) {
    	return &api.PodAttachOptions{}, false, ""
    }
    
    // ConnectMethods returns the methods supported by exec
    func (r *AttachREST) ConnectMethods() []string {
    	return upgradeableMethods
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimtemplate.go

    // apply.
    func PersistentVolumeClaimTemplate() *PersistentVolumeClaimTemplateApplyConfiguration {
    	return &PersistentVolumeClaimTemplateApplyConfiguration{}
    }
    
    // WithName sets the Name field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top