Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 89 for NewTest (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	IgnoreNotFound bool
    	// ResourceVersion provides a resource version constraint to apply to the get operation
    	// as a "not older than" constraint: the result contains data at least as new as the provided
    	// ResourceVersion. The newest available data is preferred, but any data not older than this
    	// ResourceVersion may be served.
    	ResourceVersion string
    }
    
    // ListOptions provides the options that may be provided for storage list operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

                target.getTestTask().configure(this::initializeTestFramework);
            });
    
            // This is a workaround for strange behavior from the Kotlin plugin.
            // It seems Kotlin is not doing this anymore in the newest version, so we should re-evaluate
            // whether we need withDependencies anymore.
            //
            // The Kotlin plugin attempts to look at the declared dependencies to know if it needs to add its own dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage.go

    	_ rest.ShortNamesProvider     = &REST{}
    	_ rest.StorageVersionProvider = &REST{}
    	_ rest.ResetFieldsStrategy    = &REST{}
    	_ rest.Redirector             = &REST{}
    )
    
    // NewREST returns a REST object that will work against services.
    func NewREST(
    	optsGetter generic.RESTOptionsGetter,
    	serviceIPFamily api.IPFamily,
    	ipAllocs map[api.IPFamily]ipallocator.Interface,
    	portAlloc portallocator.Interface,
    	endpoints EndpointsStorage,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	removedEventSinceRelist bool
    
    	// store will effectively support LIST operation from the "end of cache
    	// history" i.e. from the moment just after the newest cached watched event.
    	// It is necessary to effectively allow clients to start watching at now.
    	// NOTE: We assume that <store> is thread-safe.
    	store cache.Indexer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    }
    
    func (DaemonSetStatus) SwaggerDoc() map[string]string {
    	return map_DaemonSetStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    }
    
    func (DaemonSetStatus) SwaggerDoc() map[string]string {
    	return map_DaemonSetStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  7. src/cmd/trace/pprof.go

    		delete(m.stacks, existing)
    	} else {
    		// Not in the map.
    		rec = new(traceviewer.ProfileRecord)
    	}
    	// Insert regardless of whether we have a match in m.pcs.
    	// Even if we have a match, we want to keep the newest version
    	// of that stack, since we're much more likely tos see it again
    	// as we iterate through the trace linearly. Simultaneously, we
    	// are likely to never see the old stack again.
    	m.pcs[pcs] = stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers.go

    func (b containersByID) Len() int           { return len(b) }
    func (b containersByID) Swap(i, j int)      { b[i], b[j] = b[j], b[i] }
    func (b containersByID) Less(i, j int) bool { return b[i].ID.ID < b[j].ID.ID }
    
    // Newest first.
    type podSandboxByCreated []*runtimeapi.PodSandbox
    
    func (p podSandboxByCreated) Len() int           { return len(p) }
    func (p podSandboxByCreated) Swap(i, j int)      { p[i], p[j] = p[j], p[i] }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // collisionCount is the count of hash collisions for the Deployment. The Deployment controller uses this
      // field as a collision avoidance mechanism when it needs to create the name for the
      // newest ReplicaSet.
      // +optional
      optional int32 collisionCount = 8;
    }
    
    // DeploymentStrategy describes how to replace existing pods with new ones.
    message DeploymentStrategy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/initorder.go

    			}
    		}
    		fmt.Println()
    
    		fmt.Println("Processing nodes:")
    	}
    
    	// Determine initialization order by removing the highest priority node
    	// (the one with the fewest dependencies) and its edges from the graph,
    	// repeatedly, until there are no nodes left.
    	// In a valid Go program, those nodes always have zero dependencies (after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top