Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for mod$ (0.08 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		} else {
    			fs.Close()
    
    			// Chmod is needed because os.Create() ends up calling
    			// open(2) to create the file, so the final mode used is "mode &
    			// ~umask". But we want to make sure the specified mode is used
    			// in the file no matter what the umask is.
    			if err := m.osInterface.Chmod(containerLogPath, 0666); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    				C:  info.typedef,
    			}
    			f.Name[info.typedef] = n
    			f.NamePos[n] = info.pos
    		}
    		needType := p.guessKinds(f)
    		if len(needType) > 0 {
    			p.loadDWARF(f, &conv, needType)
    		}
    
    		// In godefs mode we're OK with the typedefs, which
    		// will presumably also be defined in the file, we
    		// don't want to resolve them to their base types.
    		if *godefs {
    			break
    		}
    	}
    	p.prepareNames(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    	{'-', encodeHost, false},
    	{'.', encodeHost, false},
    }
    
    func TestShouldEscape(t *testing.T) {
    	for _, tt := range shouldEscapeTests {
    		if shouldEscape(tt.in, tt.mode) != tt.escape {
    			t.Errorf("shouldEscape(%q, %v) returned %v; expected %v", tt.in, tt.mode, !tt.escape, tt.escape)
    		}
    	}
    }
    
    type timeoutError struct {
    	timeout bool
    }
    
    func (e *timeoutError) Error() string { return "timeout error" }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    // available in cmd/internal/obj/ppc64/asm9.go with
    // their valid instruction encodings.
    
    #include "../../../../../runtime/textflag.h"
    
    // In case of index mode instructions, usage of
    // (Rx)(R0) is equivalent to (Rx+R0)
    // In case of base+displacement mode instructions if
    // the offset is 0, usage of (Rx) is equivalent to 0(Rx)
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// move constants
    	MOVD $1, R3                     // 38600001
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    }
    
    // BestEffortInferServiceMTLSMode infers the mTLS mode for the service + port from all authentication
    // policies (both alpha and beta) in the system. The function always returns MTLSUnknown for external service.
    // The result is a best effort. It is because the PeerAuthentication is workload-based, this function is unable
    // to compute the correct service mTLS mode without knowing service to workload binding. For now, this
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	return available && capacity && used && inodes && inodesFree && inodesUsed
    }
    
    func ContainsAccessMode(modes []v1.PersistentVolumeAccessMode, mode v1.PersistentVolumeAccessMode) bool {
    	for _, m := range modes {
    		if m == mode {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    	t.Run("TLSv13", func(t *testing.T) { testResumption(t, VersionTLS13) })
    }
    
    func testResumption(t *testing.T, version uint16) {
    	if testing.Short() {
    		t.Skip("skipping in -short mode")
    	}
    	serverConfig := &Config{
    		MaxVersion:   version,
    		CipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA, TLS_ECDHE_RSA_WITH_RC4_128_SHA},
    		Certificates: testConfig.Certificates,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    	if err != nil {
    		return err
    	}
    
    	// if in standalone mode, indicate as much by setting all clients to nil
    	switch {
    	case standaloneMode:
    		kubeDeps.KubeClient = nil
    		kubeDeps.EventClient = nil
    		kubeDeps.HeartbeatClient = nil
    		klog.InfoS("Standalone mode, no API client")
    
    	case kubeDeps.KubeClient == nil, kubeDeps.EventClient == nil, kubeDeps.HeartbeatClient == nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. src/crypto/tls/common.go

    	// certificate chain and host name. If InsecureSkipVerify is true, crypto/tls
    	// accepts any certificate presented by the server and any host name in that
    	// certificate. In this mode, TLS is susceptible to machine-in-the-middle
    	// attacks unless custom verification is used. This should be used only for
    	// testing or in combination with VerifyConnection or VerifyPeerCertificate.
    	InsecureSkipVerify bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    	// rules.
    	kubeletFirewallChain utiliptables.Chain = "KUBE-FIREWALL"
    
    	// largeClusterEndpointsThreshold is the number of endpoints at which
    	// we switch into "large cluster mode" and optimize for iptables
    	// performance over iptables debuggability
    	largeClusterEndpointsThreshold = 1000
    )
    
    const sysctlRouteLocalnet = "net/ipv4/conf/all/route_localnet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top