Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for cherries (0.24 sec)

  1. cmd/admin-handlers-config-kv.go

    		return
    	}
    	if restoreID == "all" {
    		chEntries, err := listServerConfigHistory(ctx, objectAPI, false, -1)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    		for _, chEntry := range chEntries {
    			if err = delServerConfigHistory(ctx, objectAPI, chEntry.RestoreID); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. cmd/format-erasure.go

    type formatErasureV1 struct {
    	formatMetaV1
    	Erasure struct {
    		Version string `json:"version"` // Version of 'xl' format.
    		Disk    string `json:"drive"`   // Disk field carries assigned disk uuid.
    		// JBOD field carries the input disk order generated the first
    		// time when fresh disks were supplied.
    		JBOD []string `json:"jbod"`
    	} `json:"xl"` // Erasure field holds xl format.
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types_test.go

    			name:        "event with resource = 'Pod' matching with coming events carries same actionType",
    			event:       ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel | UpdateNodeTaint},
    			comingEvent: ClusterEvent{Resource: Pod, ActionType: UpdateNodeLabel},
    			wantResult:  true,
    		},
    		{
    			name:        "event with resource = '*' matching with coming events carries same actionType",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  4. cmd/storage-datatypes.go

    	FSType     string
    	RootDisk   bool
    	Healing    bool
    	Scanning   bool
    	Endpoint   string
    	MountPath  string
    	ID         string
    	Rotational bool
    	Metrics    DiskMetrics
    	Error      string // carries the error over the network
    }
    
    // DiskMetrics has the information about XL Storage APIs
    // the number of calls of each API and the moving average of
    // the duration of each API.
    type DiskMetrics struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            loggingManager.attachSystemOutAndErr();
    
            // Making the daemon infrastructure log with DEBUG. This is only for the infrastructure!
            // Each build request carries it's own log level and it is used during the execution of the build (see LogToClient)
            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            true
        }
    
        private validate(Throwable throwable) {
            if (dist.version != GradleVersion.current()) {
                return
            }
    
            // Verify that the exception carries the calling thread's stack information
            def currentThreadStack = Thread.currentThread().stackTrace as List
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

     * that is mutable and that changes over time.
     * </p>
     *
     * <p>
     * A provider may represent a task output. Such a provider carries information about the task producing its value. When
     * this provider is attached to an input of another task, Gradle will automatically determine the task dependencies based
     * on this connection.
     * </p>
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_uniform_attribute_utils.cc

      kUnaryOp,         // Unary ops have one min/max attr.
      kBinaryOp,        // Binary ops have lhs/rhs attr.
      kQuantizationOp,  // Quantization ops have input/output attr.
    };
    
    // For each op type, the following axis carries axis information:
    // kDynamicRangeOp: rhs_quantization_axis will carry axis information.
    // kUnaryOp: quantization_axis will carry axis information.
    // kBinaryOp: Among {lhs, rhs, output}_quantization_axis, only check rhs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // We are preserving the original value if it had to be created,
            // because it carries information required by dependency resolution
            // to ensure project artifacts are actually created the first time around.
            // When the value is loaded from the store, the dependency information is lost.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. pkg/config/model.go

    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    	// An empty revision carries a special meaning that the associated object has
    	// not been stored and assigned a revision.
    	ResourceVersion string `json:"resourceVersion,omitempty"`
    
    	// CreationTimestamp records the creation time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top