Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 191 for vers (0.04 sec)

  1. staging/src/k8s.io/api/certificates/v1/types.go

    */
    
    package v1
    
    import (
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    // +genclient:method=UpdateApproval,verb=update,subresource=approval,input=k8s.io/api/certificates/v1.CertificateSigningRequest,result=k8s.io/api/certificates/v1.CertificateSigningRequest
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. hack/lib/golang.sh

    # and KUBE_BUILDER_OS.
    # Configures KUBE_SERVER_PLATFORMS, KUBE_NODE_PLATFOMRS,
    # KUBE_TEST_PLATFORMS, and KUBE_CLIENT_PLATFORMS, then sets them
    # to readonly.
    # The configured vars will only contain platforms allowed by the
    # KUBE_SUPPORTED* vars at the top of this file.
    declare -a KUBE_SERVER_PLATFORMS
    declare -a KUBE_CLIENT_PLATFORMS
    declare -a KUBE_NODE_PLATFORMS
    declare -a KUBE_TEST_PLATFORMS
    kube::golang::setup_platforms() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. src/go/ast/filter.go

    					// For now, exclude multiple declarations of
    					// functions - keep the one with documentation.
    					//
    					// TODO(gri): Expand this filtering to other
    					//            entities (const, type, vars) if
    					//            multiple declarations are common.
    					if f, isFun := d.(*FuncDecl); isFun {
    						name := nameOf(f)
    						if j, exists := funcs[name]; exists {
    							// function declared already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/go/build/build.go

    				return fmt.Errorf("%s: malformed #cgo argument: %s", filename, arg)
    			}
    			args[i] = arg
    		}
    
    		switch verb {
    		case "CFLAGS", "CPPFLAGS", "CXXFLAGS", "FFLAGS", "LDFLAGS":
    			// Change relative paths to absolute.
    			ctxt.makePathsAbsolute(args, di.Dir)
    		}
    
    		switch verb {
    		case "CFLAGS":
    			di.CgoCFLAGS = append(di.CgoCFLAGS, args...)
    		case "CPPFLAGS":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run.go

    // in two separate conntrack zones to avoid issues with UDP conntrack race conditions.
    // Traffic that goes from istio to DNS servers and vice versa are zone 1 and traffic from
    // DNS client to istio and vice versa goes to zone 2
    func addConntrackZoneDNSUDP(
    	f UDPRuleApplier, proxyUID, proxyGID string, dnsServersV4 []string, dnsServersV6 []string, captureAllDNS bool,
    ) {
    	// TODO: add ip6 as well
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/unify.go

    		// and the types of corresponding elements unify.
    		if y, ok := y.(*Tuple); ok {
    			if x.Len() == y.Len() {
    				if x != nil {
    					for i, v := range x.vars {
    						w := y.vars[i]
    						if !u.nify(v.typ, w.typ, mode, p) {
    							return false
    						}
    					}
    				}
    				return true
    			}
    		}
    
    	case *Signature:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. pom.xml

    								<prefix>${packaging.fess.home.dir}/es/plugins</prefix>
    								<user>${packaging.fess.user}</user>
    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    						<!-- Add environment vars file -->
    						<data>
    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/env/fess</src>
    							<dst>/etc/default/fess</dst>
    							<mapper>
    								<type>perm</type>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *       instances.
       *   <li>For the constructor or static factory method used to construct instances, it's checked
       *       that when equal parameters are passed, the result instance should also be equal; and vice
       *       versa.
       *   <li>Inequality check is not performed against state mutation methods such as {@link
       *       List#add}, or functional update methods such as {@link
       *       com.google.common.base.Joiner#skipNulls}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods_test.go

    		podIPs                                     []string               // the pod IPs
    		expectedEnvs                               []kubecontainer.EnvVar // a set of expected environment vars
    		expectedError                              bool                   // does the test fail
    		expectedEvent                              string                 // does the test emit an event
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  10. src/go/types/api_test.go

    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    			vars = append(vars, v.Name())
    		}
    	}
    	if got, want := fmt.Sprint(vars), "[x y]"; got != want {
    		t.Errorf("InitOrder == %s, want %s", got, want)
    	}
    }
    
    type testImporter map[string]*Package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top