Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 424 for distinguish (0.15 sec)

  1. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    	newPriorityLevelConfiguration := obj.(*flowcontrol.PriorityLevelConfiguration)
    	oldPriorityLevelConfiguration := old.(*flowcontrol.PriorityLevelConfiguration)
    
    	// Spec updates bump the generation so that we can distinguish between status updates.
    	if !apiequality.Semantic.DeepEqual(newPriorityLevelConfiguration.Spec, oldPriorityLevelConfiguration.Spec) {
    		newPriorityLevelConfiguration.Generation = oldPriorityLevelConfiguration.Generation + 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1/generated.proto

      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // The number of old history to retain to allow rollback.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1/generated.proto

      // is ready).
      // +optional
      optional int32 minReadySeconds = 4;
    
      // The number of old history to retain to allow rollback.
      // This is a pointer to distinguish between explicit zero and not specified.
      // Defaults to 10.
      // +optional
      optional int32 revisionHistoryLimit = 6;
    }
    
    // DaemonSetStatus represents the current status of a daemon set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

     *      file operations.
     * </ul>
     *
     * <p>The jCIFS API maps all of these operations into the standard Java
     * <code>XxxputStream</code> interface. A special <code>PIPE_TYPE</code>
     * flags is necessary to distinguish which type of Named Pipe behavior
     * is desired.
     *
     * <p><table border="1" cellpadding="3" cellspacing="0" width="100%">
     * <tr bgcolor="#ccccff">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/list_work_estimator.go

    		//     has removed the type from the cache.
    		//  c. the type is an aggregated resource that is served by a
    		//     different apiserver (thus its object count is not updated)
    		// we don't have a way to distinguish between those situations.
    		// However, in case c, the request is delegated to a different apiserver,
    		// and thus its cost for our server is minimal. To avoid the situation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. pkg/registry/apps/deployment/strategy.go

    	newDeployment.Status = oldDeployment.Status
    
    	pod.DropDisabledTemplateFields(&newDeployment.Spec.Template, &oldDeployment.Spec.Template)
    
    	// Spec updates bump the generation so that we can distinguish between
    	// scaling events and template changes, annotation updates bump the generation
    	// because annotations are copied from deployments to their replica sets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:07:13 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"revisionHistoryLimit": "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
    }
    
    func (DaemonSetSpec) SwaggerDoc() map[string]string {
    	return map_DaemonSetSpec
    }
    
    var map_DaemonSetStatus = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  8. src/runtime/map_faststr.go

    			if *((*[4]byte)(add(key.str, uintptr(key.len)-4))) != *((*[4]byte)(add(k.str, uintptr(key.len)-4))) {
    				continue
    			}
    			if keymaybe != abi.MapBucketCount {
    				// Two keys are potential matches. Use hash to distinguish them.
    				goto dohash
    			}
    			keymaybe = i
    		}
    		if keymaybe != abi.MapBucketCount {
    			k := (*stringStruct)(add(unsafe.Pointer(b), dataOffset+keymaybe*2*goarch.PtrSize))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/internal/testenv/exec.go

    			// There is no way the test did that intentionally — it's too close to the
    			// wire! — so mark it as a test failure. That way, if the test expects the
    			// command to fail for some other reason, it doesn't have to distinguish
    			// between that reason and a timeout.
    			t.Errorf("test timed out while running command: %v", cmd)
    		} else {
    			// The command is being terminated due to ctx being canceled, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // conditions contains information about the current status of the endpoint.
      optional EndpointConditions conditions = 2;
    
      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top