Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 333 for unwrapped (0.24 sec)

  1. android/guava/src/com/google/common/util/concurrent/Futures.java

       *
       * <ul>
       *   <li>Any {@link ExecutionException} has its <i>cause</i> wrapped in an {@code X} if the cause
       *       is a checked exception, an {@link UncheckedExecutionException} if the cause is a {@code
       *       RuntimeException}, or an {@link ExecutionError} if the cause is an {@code Error}.
       *   <li>Any {@link InterruptedException} is wrapped in an {@code X} (after restoring the
       *       interrupt).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/encoding/ascii85/ascii85.go

    // for the last fragment, so Encode is not appropriate for use on
    // individual blocks of a large data stream. Use [NewEncoder] instead.
    //
    // Often, ascii85-encoded data is wrapped in <~ and ~> symbols.
    // Encode does not add these.
    func Encode(dst, src []byte) int {
    	if len(src) == 0 {
    		return 0
    	}
    
    	n := 0
    	for len(src) > 0 {
    		dst[0] = 0
    		dst[1] = 0
    		dst[2] = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/net/http/transfer_test.go

    			bodyFunc:       newFileFunc,
    			method:         "PUT",
    			contentLength:  nBytes,
    			limitedReader:  true,
    			expectedReader: fileType,
    		},
    		{
    			name:   "file, non-chunked, size set, nopCloser wrapped",
    			method: "PUT",
    			bodyFunc: func() (io.Reader, func(), error) {
    				r, cleanup, err := newFileFunc()
    				return io.NopCloser(r), cleanup, err
    			},
    			contentLength:  nBytes,
    			limitedReader:  true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Equivalence.java

          this.reference = reference;
        }
    
        /** Returns the (possibly null) reference wrapped by this instance. */
        @ParametricNullness
        public T get() {
          return reference;
        }
    
        /**
         * Returns {@code true} if {@link Equivalence#equivalent(Object, Object)} applied to the wrapped
         * references is {@code true} and both wrappers use the {@link Object#equals(Object) same}
         * equivalence.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchain_plugins.adoc

    <2> The mapping method returns a download response wrapped in an `Optional`. If the resolver implementation can't provide a matching toolchain, the enclosing `Optional` contains an empty value.
    
    == Register the resolver in a plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         * <ul>
         *     <li>A {@link org.gradle.api.artifacts.PublishArtifact} instance. Extension and classifier values are taken from the wrapped instance.</li>
         *     <li>An {@link org.gradle.api.tasks.bundling.AbstractArchiveTask} instance. Extension and classifier values are taken from the wrapped instance.</li>
         *     <li>Anything that can be resolved to a {@link java.io.File} via the {@link org.gradle.api.Project#file(Object)} method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. pkg/volume/configmap/configmap.go

    func (b *configMapVolumeMounter) SetUpAt(dir string, mounterArgs volume.MounterArgs) error {
    	klog.V(3).Infof("Setting up volume %v for pod %v at %v", b.volName, b.pod.UID, dir)
    
    	// Wrap EmptyDir, let it do the setup.
    	wrapped, err := b.plugin.host.NewWrapperMounter(b.volName, wrappedVolumeSpec(), &b.pod, *b.opts)
    	if err != nil {
    		return err
    	}
    
    	optional := b.source.Optional != nil && *b.source.Optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java

            this.artifactId = artifactId;
            this.version = version;
        }
    
        public Source getSource() {
            return source;
        }
    
        /**
         * Gets the model being wrapped.
         *
         * @return The model or {@code null} if not set.
         */
        public Model getModel() {
            return model;
        }
    
        /**
         * Gets the effective group identifier of the model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go

    }
    
    func newTimeoutWriter(w http.ResponseWriter) (timeoutWriter, http.ResponseWriter) {
    	base := &baseTimeoutWriter{w: w, handlerHeaders: w.Header().Clone()}
    	wrapped := responsewriter.WrapForHTTP1Or2(base)
    
    	return base, wrapped
    }
    
    var _ http.ResponseWriter = &baseTimeoutWriter{}
    var _ responsewriter.UserProvidedDecorator = &baseTimeoutWriter{}
    
    type baseTimeoutWriter struct {
    	w http.ResponseWriter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/refs.go

    		return &result, nil
    	}
    	return schema, nil
    }
    
    func refOf(schema *spec.Schema) (string, bool) {
    	if schema.Ref.GetURL() != nil {
    		return schema.Ref.String(), true
    	}
    	// A Ref may be wrapped in allOf to preserve its description
    	// see https://github.com/kubernetes/kubernetes/issues/106387
    	// For kube-openapi, allOf is only used for wrapping a Ref.
    	for _, allOf := range schema.AllOf {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 17:23:50 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top