Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for isStandard (0.4 sec)

  1. pkg/scheduler/framework/types.go

    	switch s {
    	case QueueSkip:
    		return "QueueSkip"
    	case Queue:
    		return "Queue"
    	}
    	return ""
    }
    
    // ClusterEvent abstracts how a system resource's state gets changed.
    // Resource represents the standard API resources such as Pod, Node, etc.
    // ActionType denotes the specific change such as Add, Update or Delete.
    type ClusterEvent struct {
    	Resource   GVK
    	ActionType ActionType
    	Label      string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    	if userDefined["content-type"] == "" {
    		userDefined["content-type"] = mimedb.TypeByExtension(path.Ext(object))
    	}
    
    	// if storageClass is standard no need to save it as part of metadata.
    	if userDefined[xhttp.AmzStorageClass] == storageclass.STANDARD {
    		delete(userDefined, xhttp.AmzStorageClass)
    	}
    
    	// Fill all the necessary metadata.
    	// Update `xl.meta` content on each disks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// owner: @saschagrunert
    	// alpha: v1.28
    	//
    	// Enables user namespace support for Pod Security Standards. Enabling this
    	// feature will modify all Pod Security Standard rules to allow setting:
    	// spec[.*].securityContext.[runAsNonRoot,runAsUser]
    	// This feature gate should only be enabled if all nodes in the cluster
    	// support the user namespace feature and have it enabled. The feature gate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

       Restart-LogService $LOGGINGEXPORTER_SERVICE $LOGGINGEXPORTER_CMDLINE
       Restart-LogService $LOGGINGAGENT_SERVICE $LOGGINGAGENT_CMDLINE
    }
    
    # Restarts the service, or starts it if it is not currently
    # running. A standard `Restart-Service` may fail because
    # the process is sometimes unstoppable, so this function works around it
    # by killing the processes.
    function Restart-LogService([string]$service, [string]$cmdline) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Outputs random values from a truncated normal distribution.";
    
      let description = [{
    The generated values follow a normal distribution with mean 0 and standard
    deviation 1, except that values whose magnitude is more than 2 standard
    deviations from the mean are dropped and re-picked.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. src/net/http/server.go

    			return
    		}
    
    		c.rwc.SetReadDeadline(time.Time{})
    	}
    }
    
    func (w *response) sendExpectationFailed() {
    	// TODO(bradfitz): let ServeHTTP handlers handle
    	// requests with non-standard expectation[s]? Seems
    	// theoretical at best, and doesn't fit into the
    	// current ServeHTTP model anyway. We'd need to
    	// make the ResponseWriter an optional
    	// "ExpectReplier" interface or something.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ==== Using unsupported API to start external processes at configuration time is no longer allowed with the configuration cache enabled
    
    Since Gradle 7.5, using `Project.exec`, `Project.javaexec`, and standard Java and Groovy APIs to run external processes at configuration time has been considered an error only if the <<configuration_cache.adoc#config_cache:stable,feature preview `STABLE_CONFIGURATION_CACHE`>> was enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    		// AWS S3 silently drops checksums on range requests.
    		hash.AddChecksumHeader(w, objInfo.decryptChecksums(opts.PartNumber, r.Header))
    	}
    
    	// Set standard object headers.
    	if err = setObjectHeaders(ctx, w, objInfo, rs, opts); err != nil {
    		writeErrorResponseHeadersOnly(w, toAPIError(ctx, err))
    		return
    	}
    
    	// Set Parts Count Header
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. src/time/format.go

    	if January <= month && month <= December {
    		buf = append(buf, ", time."...)
    		buf = append(buf, longMonthNames[month-1]...)
    	} else {
    		// It's difficult to construct a time.Time with a date outside the
    		// standard range but we might as well try to handle the case.
    		buf = appendInt(buf, int(month), 0)
    	}
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, day, 0)
    	buf = append(buf, ", "...)
    	buf = appendInt(buf, hour, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

     protected:
      // This flag will control the behavior of error emitting during rewrite:
      // 1) If it's true, then patterns will only emit errors during debug or
      // tracing mode. 2) If it's false, then patterns will emit standard errors
      // when there is a rewrite failure.
      bool allow_tensorlist_pass_through_;
    
      // This flag will control the behavior of setting the batch size one when the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top