Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 158 for mentioned (0.14 sec)

  1. pkg/wasm/imagefetcher.go

    	r, err := layer.Compressed()
    	if err != nil {
    		return nil, fmt.Errorf("could not get layer content: %v", err)
    	}
    	defer r.Close()
    
    	// Just read it since the content is already a raw Wasm binary as mentioned above.
    	ret, err := io.ReadAll(r)
    	if err != nil {
    		return nil, fmt.Errorf("could not extract wasm binary: %v", err)
    	}
    	return ret, nil
    }
    
    type wasmKeyChain struct {
    	data []byte
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	}
    	defer f.Close()
    	data, err := io.ReadAll(f)
    	if err != nil {
    		return nil, err
    	}
    	in := string(data)
    	doc := NewParser().Parse(in)
    	return doc, nil
    }
    
    // An APIFeature is a symbol mentioned in an API file,
    // like the ones in the main go repo in the api directory.
    type APIFeature struct {
    	Package string // package that the feature is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. cmd/handler-utils.go

    func errorResponseHandler(w http.ResponseWriter, r *http.Request) {
    	if r.Method == http.MethodOptions {
    		return
    	}
    	desc := "Do not upgrade one server at a time - please follow the recommended guidelines mentioned here https://github.com/minio/minio#upgrading-minio for your environment"
    	switch {
    	case strings.HasPrefix(r.URL.Path, peerRESTPrefix):
    		writeErrorResponseString(r.Context(), w, APIError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. helm/minio/values.yaml

    ## |:----------------------|:-------------------------|
    ## | rootUser              | rootUser                 |
    ## | rootPassword          | rootPassword             |
    ##
    ## All mentioned variables will be ignored in values file.
    ## .data.rootUser and .data.rootPassword are mandatory,
    ## others depend on enabled status of corresponding sections.
    existingSecret: ""
    
    ## Directory on the MinIO pof
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    It's a way to make the build more reliable and ensures https://reproducible-builds.org/[reproducibility].
    
    Retrieval::
    As mentioned, Gradle does not automatically copy files from the dependency cache.
    Its standard tasks typically use the files directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    include::sample[dir="snippets/java-feature-variant/producer-separate-sourceset/groovy",files="build.gradle[tags=register_variant_extra_jars]"]
    ====
    
    [[sec::consuming_feature_variants]]
    == Dependencies on features
    
    --
    As mentioned earlier, features can be lossy when published.
    As a consequence, a consumer can depend on a feature only in these cases:
    
    - with a project dependency (in a multi-project build)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // It uses a brute-force recursive approach to enumerate all objects
    // defined by dependencies of pkg, so that it can learn the set of
    // package paths that may be mentioned in the fact encoding. This does
    // not scale well; use [NewDecoderFunc] where possible.
    func NewDecoder(pkg *types.Package) *Decoder {
    	// Compute the import map for this package.
    	// See the package doc comment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `artifactSelector`: Information to select a specific artifact (identified by `name`, `type`, `extension`, and `classifier`) of the dependency that is not mentioned in the dependency's metadata. These are typically artifacts published with Maven that contain a _classifier_.
    
    ### Changelog
    
    #### 1.1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf_test.go

    		scmd.Dir = dir
    		if sout, serr := scmd.CombinedOutput(); serr != nil {
    			t.Fatalf("failed to strip %v: %v:\n%s", scmd.Args, serr, sout)
    		} else {
    			// Non-empty output indicates failure, as mentioned above.
    			if len(string(sout)) != 0 {
    				t.Errorf("unexpected outut from %s:\n%s\n", sprog, string(sout))
    			}
    		}
    		rcmd := testenv.Command(t, filepath.Join(dir, targ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

                       FlatSymbolRefAttr::get(builder.getStringAttr(func_name)));
      // Store the custom attribute to restore the function name when loading it
      // back in the post calibration stage. As mentioned above, the above entry
      // function attribute is not reliable.
      call_op->setAttr(kOriginalStablehloEntryFunctionAttrName,
                       builder.getStringAttr(func_name));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top