Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 340 for greater (0.76 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            return parent;
        }
    
        /**
         * Like {@link java.io.File#mkdirs()}, except throws an informative error if a dir cannot be created.
         *
         * @param dir The dir to create, including any non existent parent dirs.
         */
        public static void mkdirs(File dir) {
            dir = dir.getAbsoluteFile();
            if (dir.isDirectory()) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

                                        /*allow_partial_conversion=*/false);
    
      auto pass_instrumentors = mlir::GetPassInstrumentors();
      for (const auto& creator : pass_instrumentors) {
        tf2xla.addInstrumentation(creator());
      }
      if (DEBUG_DATA_DUMPER()->ShouldDump(module_name.str(), kDebugGroupMain) ||
          VLOG_IS_ON(1)) {
        tensorflow::DumpMlirOpToFile(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. pkg/volume/hostpath/host_path.go

    type hostPathProvisioner struct {
    	host     volume.VolumeHost
    	options  volume.VolumeOptions
    	plugin   *hostPathPlugin
    	basePath string
    }
    
    // Create for hostPath simply creates a local /tmp/%/%s directory as a new PersistentVolume, default /tmp/hostpath_pv/%s.
    // This Provisioner is meant for development and testing only and WILL NOT WORK in a multi-node cluster.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="550000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="650000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="750000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="850000"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

                    throw new IOException("Failed to create install parent directory: " + installFolder.getParentFile());
                }
                // Before checking existence, lock the install folder name to prevent concurrent installations
                // An extra string is added to prevent the lock from being created inside the install folder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/patches/patches.go

    }
    
    // createPatchSet creates a patchSet object, by splitting the given "data" by "\n---".
    func createPatchSet(targetName string, patchType types.PatchType, data string) (*patchSet, error) {
    	var patches []string
    
    	// Split the patches and convert them to JSON.
    	// Data that is already JSON will not cause an error.
    	buf := bytes.NewBuffer([]byte(data))
    	reader := utilyaml.NewYAMLReader(bufio.NewReader(buf))
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableBiMap.java

       * build multiple bimaps in series. Each bimap is a superset of the bimaps created before it.
       *
       * @since 2.0
       */
      public static final class Builder<K, V> extends ImmutableMap.Builder<K, V> {
        /**
         * Creates a new builder. The returned builder is equivalent to the builder generated by {@link
         * ImmutableBiMap#builder}.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		return "", fmt.Errorf("failed to write upload file %s (%v)", uploadFileName, errUpload)
    	}
    	u.logger.Printf("Created %s, deleting %d count files", filepath.Base(uploadFileName), len(countFiles))
    	u.deleteFiles(countFiles)
    	if uploadOK {
    		return uploadFileName, nil
    	}
    	return "", nil
    }
    
    // exclusiveWrite attempts to create filename exclusively, and if successful,
    // writes content to the resulting file handle.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    	// If CSINode doesn't exist, the predicate may read the limits from Node object
    	csiNode, err := pl.csiNodeLister.Get(node.Name)
    	if err != nil {
    		// TODO: return the error once CSINode is created by default (2 releases)
    		logger.V(5).Info("Could not get a CSINode object for the node", "node", klog.KObj(node), "err", err)
    	}
    
    	newVolumes := make(map[string]string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        private static final ValueState<Object> FINALIZED_VALUE = new FinalizedValue<>();
    
        /**
         * Creates a new non-finalized state.
         */
        public static <S> ValueState<S> newState(PropertyHost host) {
            return new ValueState.NonFinalizedValue<>(host, Function.identity());
        }
    
        /**
         * Creates a new non-finalized state.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top