Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for _objects (0.33 sec)

  1. pkg/api/pod/util_test.go

    	// excludedSecretPaths holds struct paths to fields with "secret" in the name that are not actually references to secret API objects
    	excludedSecretPaths := sets.New[string](
    		"Spec.Volumes[*].VolumeSource.CephFS.SecretFile",
    	)
    	// expectedSecretPaths holds struct paths to fields with "secret" in the name that are references to secret API objects.
    	// every path here should be represented as an example in the Pod stub above, with the secret name set to the path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    					v1.ResourcePods:   *(resource.NewQuantity(10, resource.DecimalSI)),
    				}},
    		}
    		scache.AddNode(logger, &node)
    		nodes = append(nodes, &node)
    		objects = append(objects, &node)
    	}
    
    	// Create expected failure reasons for all the nodes. Hopefully they will get rolled up into a non-spammy summary.
    	failedNodeStatues := framework.NodeToStatusMap{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				Generic: schema.Generic{
    					Type: "string",
    				},
    				ValueValidation: &schema.ValueValidation{
    					Enum: []schema.JSON{
    						{Object: "Pending"},
    						{Object: "Available"},
    						{Object: "Bound"},
    						{Object: "Released"},
    						{Object: "Failed"},
    					},
    				},
    			}}),
    			valid: []string{
    				"self.enumStr == 'Pending'",
    				"self.enumStr in ['Pending', 'Available']",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    { "$schema": "http://json-schema.org/schema#", "type": "object", "additionalProperties": false, "properties": { "global": { "type": "object" }, "affinity": { "type": "object" }, "securityContext": { "type": ["object", "null"] }, "containerSecurityCon": { "type": ["object", "null"] }, "kind":{ "type": "string", "enum": ["Deployment", "DaemonSet"] }, "annotations": { "additionalProperties": { "type": [ "string", "integer" ] }, "type": "object" }, "autoscaling": { "type": "object", "properties": { "enabled":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    // these objects while we figure out a more comprehensive dependency injection story for the Kubelet.
    type Dependencies struct {
    	Options []Option
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

              latch.countDown()
            }
          },
        )
        latch.await()
        // There's some flakiness when triggering a GC for objects in a separate thread. Adding a
        // small delay appears to ensure the objects will get GC'd.
        Thread.sleep(200)
        awaitGarbageCollection()
        val message = testLogHandler.take()
        assertThat(message).contains(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                // GENERATE public Object invokeMethod(String name, Object params) { return getAsDynamicObject().invokeMethod(name, (Object[])params); }
                addGetter("invokeMethod", OBJECT_TYPE, RETURN_OBJECT_FROM_STRING_OBJECT, getter -> new MethodVisitorScope(getter) {{
    
                    // GENERATE getAsDynamicObject().invokeMethod(name, (args instanceof Object[]) ? args : new Object[] { args })
                    _ALOAD(0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // See also: go install, go get, go clean.
    //
    // # Remove object files and cached files
    //
    // Usage:
    //
    //	go clean [clean flags] [build flags] [packages]
    //
    // Clean removes object files from package source directories.
    // The go command builds most objects in a temporary directory,
    // so go clean is mainly concerned with object files left by other
    // tools or by manual invocations of go build.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		case autoscaling.ObjectMetricSourceType:
    			if spec.Object.Target.AverageValue != nil {
    				current := "<unknown>"
    				if len(statuses) > i && statuses[i].Object != nil && statuses[i].Object.Current.AverageValue != nil {
    					current = statuses[i].Object.Current.AverageValue.String()
    				}
    				list = append(list, fmt.Sprintf("%s/%s (avg)", current, spec.Object.Target.AverageValue.String()))
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    		var matchedTarget *autoscalingv2.MetricSpec
    		for i, target := range tc.metricsTarget {
    			if target.Type == autoscalingv2.ObjectMetricSourceType && name == target.Object.DescribedObject.Name {
    				gk := schema.FromAPIVersionAndKind(target.Object.DescribedObject.APIVersion, target.Object.DescribedObject.Kind).GroupKind()
    				mapping, err := mapper.RESTMapping(gk)
    				if err != nil {
    					t.Logf("unable to get mapping for %s: %v", gk.String(), err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top