Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for InterfaceA (0.29 sec)

  1. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    		`EvaluationError:` + fmt.Sprintf("%v", this.EvaluationError) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *ExtraValue) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    	iNdEx := 0
    	for iNdEx < l {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

          },
          "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON": {
            "description": "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil."
          },
          "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    			Name:            podName,
    			Namespace:       "ns1",
    			UID:             "456",
    			OwnerReferences: ownerReferences,
    		},
    	}
    }
    
    func serilizeOrDie(t *testing.T, object interface{}) []byte {
    	data, err := json.Marshal(object)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return data
    }
    
    // test the attemptToDeleteItem function making the expected actions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    		`SecretName:` + fmt.Sprintf("%v", this.SecretName) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *HTTPIngressPath) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    	iNdEx := 0
    	for iNdEx < l {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	mrfSaveCh       chan MRFReplicateEntry
    	mrfStopCh       chan struct{}
    	mrfWorkerSize   int
    }
    
    // ReplicationWorkerOperation is a shared interface of replication operations.
    type ReplicationWorkerOperation interface {
    	ToMRFEntry() MRFReplicateEntry
    }
    
    const (
    	// WorkerMaxLimit max number of workers per node for "fast" mode
    	WorkerMaxLimit = 500
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type ResourceID uint16
    
    // ResourceIDOrString must be either a ResourceID, to specify a resource or resource type by ID,
    // or a string, to specify a resource or resource type by name.
    type ResourceIDOrString interface{}
    
    // Predefined resource names and types.
    var (
    	// Predefined names.
    	CREATEPROCESS_MANIFEST_RESOURCE_ID                 ResourceID = 1
    	ISOLATIONAWARE_MANIFEST_RESOURCE_ID                ResourceID = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go

    		`Expression:` + fmt.Sprintf("%v", this.Expression) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func valueToStringGenerated(v interface{}) string {
    	rv := reflect.ValueOf(v)
    	if rv.IsNil() {
    		return "nil"
    	}
    	pv := reflect.Indirect(rv).Interface()
    	return fmt.Sprintf("*%v", pv)
    }
    func (m *AuditAnnotation) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    	iNdEx := 0
    	for iNdEx < l {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 117.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            if (type.isAnnotation() || type.isEnum()) {
                TreeFormatter formatter = new TreeFormatter();
                formatter.node(type);
                formatter.append(" is not a class or interface.");
                throw new ClassGenerationException(formatter.toString());
            }
            return new ClassInspectionVisitorImpl(type, decorate, suffix, factoryId);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    // # Edit go.mod from tools or scripts
    //
    // Usage:
    //
    //	go mod edit [editing flags] [-fmt|-print|-json] [go.mod]
    //
    // Edit provides a command-line interface for editing go.mod,
    // for use primarily by tools or scripts. It reads only go.mod;
    // it does not look up information about the modules involved.
    // By default, edit reads and writes the go.mod file of the main module,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control_test.go

    	"k8s.io/kubernetes/pkg/controller/history"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    type invariantFunc func(set *apps.StatefulSet, om *fakeObjectManager) error
    
    func setupController(client clientset.Interface) (*fakeObjectManager, *fakeStatefulSetStatusUpdater, StatefulSetControlInterface) {
    	informerFactory := informers.NewSharedInformerFactory(client, controller.NoResyncPeriodFunc())
    	om := newFakeObjectManager(informerFactory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top