Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,032 for OPT (0.07 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/types.go

    	// +optional
    	APIGroup *string `json:"apiGroup,omitempty" protobuf:"bytes,1,opt,name=aPIGroup"`
    
    	// kind is the type of resource being referenced.
    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    
    	// name is the name of resource being referenced.
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    
    	// scope represents if this refers to a cluster or namespace scoped resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

            BuildFeatures buildFeatures = getBuildFeatures();
    
            Boolean configCacheRequested = buildFeatures.getConfigurationCache().getRequested() // <2>
                .getOrNull(); // could be null if user did not opt in nor opt out
            String configCacheUsage = describeFeatureUsage(configCacheRequested);
            MyReport myReport = new MyReport();
            myReport.setConfigurationCacheUsage(configCacheUsage);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. samples/bookinfo/src/reviews/Dockerfile

    ENV SERVERDIRNAME reviews
    
    COPY --from=builder /home/gradle/reviews-wlpcfg/servers/LibertyProjectServer/ /opt/ol/wlp/usr/servers/defaultServer/
    
    RUN /opt/ol/wlp/bin/featureUtility installServerFeatures  --acceptLicense /opt/ol/wlp/usr/servers/defaultServer/server.xml --verbose && \
        chmod -R g=rwx /opt/ol/wlp/output/defaultServer/
    
    ARG service_version
    ARG enable_ratings
    ARG star_color
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 23:40:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/types.go

    	Attacher string `json:"attacher" protobuf:"bytes,1,opt,name=attacher"`
    
    	// source represents the volume that should be attached.
    	Source VolumeAttachmentSource `json:"source" protobuf:"bytes,2,opt,name=source"`
    
    	// nodeName represents the node that the volume should be attached to.
    	NodeName string `json:"nodeName" protobuf:"bytes,3,opt,name=nodeName"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/join.go

    		}
    		if len(opt.externalcfg.Discovery.BootstrapToken.Token) == 0 {
    			opt.externalcfg.Discovery.BootstrapToken.Token = opt.token
    		}
    	}
    
    	// if a file or URL from which to load cluster information was not provided, unset the Discovery.File object
    	if len(opt.externalcfg.Discovery.File.KubeConfigPath) == 0 {
    		opt.externalcfg.Discovery.File = nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// reason is the reason for the condition's last transition.
    	// +optional
    	Reason string `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason"`
    
    	// message is a human-readable explanation containing details about
    	// the transition
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,5,opt,name=message"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/encoding/json/tags_test.go

    	if name != "field" {
    		t.Fatalf("name = %q, want field", name)
    	}
    	for _, tt := range []struct {
    		opt  string
    		want bool
    	}{
    		{"foobar", true},
    		{"foo", true},
    		{"bar", false},
    	} {
    		if opts.Contains(tt.opt) != tt.want {
    			t.Errorf("Contains(%q) = %v, want %v", tt.opt, !tt.want, tt.want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 583 bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Port name.
    	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
    	// Port number.
    	Port int32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"`
    	// NodePort number.
    	NodePort int32 `protobuf:"varint,3,opt,name=nodePort,proto3" json:"nodePort,omitempty"`
    	// Target port number.
    	TargetPort int32 `protobuf:"varint,4,opt,name=targetPort,proto3" json:"targetPort,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/types.go

    	APIGroup string `json:"apiGroup" protobuf:"bytes,1,opt,name=apiGroup"`
    	// Kind is the type of resource being referenced
    	Kind string `json:"kind" protobuf:"bytes,2,opt,name=kind"`
    	// Name is the name of resource being referenced
    	Name string `json:"name" protobuf:"bytes,3,opt,name=name"`
    }
    
    // +genclient
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.8
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// scope indicates the scope of a resource, either Cluster or Namespaced
    	Scope ResourceScope `json:"scope" protobuf:"bytes,3,opt,name=scope"`
    	// singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top