Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 241 for Option (0.34 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

        // Plug the following UnicodeSet pattern into
        // https://unicode.org/cldr/utility/list-unicodeset.jsp
        // [[[:Zs:][:Zl:][:Zp:][:Cc:][:Cf:][:Cs:][:Co:]]&[\u0000-\uFFFF]]
        // with the "Abbreviate" option, and get the ranges from there.
        private static final String RANGE_STARTS =
            "\u0000\u007f\u00ad\u0600\u061c\u06dd\u070f\u0890\u08e2\u1680\u180e\u2000\u2028\u205f\u2066"
                + "\u3000\ud800\ufeff\ufff9";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    					else { obj.data("jstree_is_loading",true); }
    				}
    				switch(!0) {
    					case (!s.data && !s.ajax): throw "Neither data nor ajax settings supplied.";
    					// function option added here for easier model integration (also supporting async - see callback)
    					case ($.isFunction(s.data)):
    						s.data.call(this, obj, $.proxy(function (d) {
    							d = this._parse_json(d, obj);
    							if(!d) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	stdout, stderr, err := m.runtimeService.ExecSync(ctx, id.ID, cmd, timeout)
    	// NOTE(tallclair): This does not correctly interleave stdout & stderr, but should be sufficient
    	// for logging purposes. A combined output option will need to be added to the ExecSyncRequest
    	// if more precise output ordering is ever required.
    	return append(stdout, stderr...), err
    }
    
    // removeContainer removes the container and the container logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    
    #### Options
    ```
    -tf-saved-model-dir : Directory containing the model exported as a TensorFlow SavedModel. If your model is not based on the TensorFlow SavedModel, use an empty value.
    ```
    ### `-tf-layout-assignment`
    
    _Layout assignment pass._
    
    
    #### Options
    ```
    -force-data-format : Force data format for all layout sensitive ops.
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. cmd/sts-handlers_test.go

    	exportContentStrings := map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    | `project.sync {}`
    | link:{javadocPath}/org/gradle/api/file/FileSystemOperations.html#sync-org.gradle.api.Action-[FileSystemOperations.sync {}]
    
    | `project.delete {}`
    | link:{javadocPath}/org/gradle/api/file/FileSystemOperations.html#delete-org.gradle.api.Action-[FileSystemOperations.delete {}]
    
    | `project.mkdir(path)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    				continue dwarfLoop
    			}
    		}
    		Errorf(nil, "emitRelocations: could not find %q section", sect.Name)
    	}
    }
    
    // xcoffCreateExportFile creates a file with exported symbols for
    // -Wl,-bE option.
    // ld won't export symbols unless they are listed in an export file.
    func xcoffCreateExportFile(ctxt *Link) (fname string) {
    	fname = filepath.Join(*flagTmpdir, "export_file.exp")
    	var buf bytes.Buffer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string",
              "default": ""
            },
            "webhook": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	}
    	if v {
    		l.attrDuplicateOK.Set(l.extIndex(i))
    	} else {
    		l.attrDuplicateOK.Unset(l.extIndex(i))
    	}
    }
    
    // AttrShared returns true for symbols compiled with the -shared option.
    func (l *Loader) AttrShared(i Sym) bool {
    	if !l.IsExternal(i) {
    		// TODO: if this path winds up being taken frequently, it
    		// might make more sense to copy the flag value out of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

           * a valid value for V.
           */
          return uncheckedNull();
        } else {
          @SuppressWarnings("unchecked") // this is the only other option
          V asV = (V) obj;
          return asV;
        }
      }
    
      @Override
      public boolean isDone() {
        final Object localValue = value;
        return localValue != null & !(localValue instanceof SetFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top