Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/crypto/internal/nistec/fiat/p384.go

    	p384Add(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Sub sets e = t1 - t2, and returns e.
    func (e *P384Element) Sub(t1, t2 *P384Element) *P384Element {
    	p384Sub(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Mul sets e = t1 * t2, and returns e.
    func (e *P384Element) Mul(t1, t2 *P384Element) *P384Element {
    	p384Mul(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Square sets e = t * t, and returns e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p521.go

    	p521Add(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Sub sets e = t1 - t2, and returns e.
    func (e *P521Element) Sub(t1, t2 *P521Element) *P521Element {
    	p521Sub(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Mul sets e = t1 * t2, and returns e.
    func (e *P521Element) Mul(t1, t2 *P521Element) *P521Element {
    	p521Mul(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Square sets e = t * t, and returns e.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/collect/Range.java

      /** Returns {@code true} if this range has an upper endpoint. */
      public boolean hasUpperBound() {
        return upperBound != Cut.aboveAll();
      }
    
      /**
       * Returns the upper endpoint of this range.
       *
       * @throws IllegalStateException if this range is unbounded above (that is, {@link
       *     #hasUpperBound()} returns {@code false})
       */
      public C upperEndpoint() {
        return upperBound.endpoint();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/ephemeralcontainer.go

    // apply.
    func EphemeralContainer() *EphemeralContainerApplyConfiguration {
    	return &EphemeralContainerApplyConfiguration{}
    }
    
    // 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: Fri Jul 07 21:39:35 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. 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)
Back to top