Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 234 for unmix (0.04 sec)

  1. src/syscall/fs_wasip1.go

    //go:wasmimport wasi_snapshot_preview1 fd_fdstat_set_flags
    //go:noescape
    func fd_fdstat_set_flags(fd int32, flags fdflags) Errno
    
    // fd_fdstat_get_flags is accessed from internal/syscall/unix
    //go:linkname fd_fdstat_get_flags
    
    func fd_fdstat_get_flags(fd int) (uint32, error) {
    	var stat fdstat
    	errno := fd_fdstat_get(int32(fd), unsafe.Pointer(&stat))
    	return uint32(stat.fdflags), errnoErr(errno)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/modules.txt

    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    golang.org/x/sync/errgroup
    golang.org/x/sync/semaphore
    # golang.org/x/sys v0.21.0
    ## explicit; go 1.18
    golang.org/x/sys/plan9
    golang.org/x/sys/unix
    golang.org/x/sys/windows
    # golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b
    ## explicit; go 1.20
    golang.org/x/telemetry
    golang.org/x/telemetry/counter
    golang.org/x/telemetry/counter/countertest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/crypto/tls/boring_test.go

    		org = org[:i]
    		parentOrg = name[i+1:]
    	}
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject: pkix.Name{
    			Organization: []string{org},
    		},
    		NotBefore: time.Unix(0, 0),
    		NotAfter:  time.Unix(0, 0),
    
    		KeyUsage:              x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
    		ExtKeyUsage:           []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth, x509.ExtKeyUsageClientAuth},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/net.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package nodeagent
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"net/netip"
    
    	"golang.org/x/sys/unix"
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/cni/pkg/ipset"
    	"istio.io/istio/cni/pkg/iptables"
    	"istio.io/istio/cni/pkg/util"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/kubemark/hollow_kubelet.go

    	f.NodeLabels = opt.NodeLabels
    	f.RegisterSchedulable = true
    
    	// Config struct
    	c, err := options.NewKubeletConfiguration()
    	if err != nil {
    		panic(err)
    	}
    
    	c.ImageServiceEndpoint = "unix:///run/containerd/containerd.sock"
    	c.StaticPodURL = ""
    	c.EnableServer = true
    	c.Address = "0.0.0.0" /* bind address */
    	c.Port = int32(opt.KubeletPort)
    	c.ReadOnlyPort = int32(opt.KubeletReadOnlyPort)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/controller/podgc/gc_controller_test.go

    			_, ctx := ktesting.NewTestContext(t)
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.PodDisruptionConditions, test.enablePodDisruptionConditions)
    			creationTime := time.Unix(0, 0)
    			nodes := []*v1.Node{testutil.NewNode("node")}
    
    			pods := make([]*v1.Pod, 0, len(test.pods))
    			for _, pod := range test.pods {
    				creationTime = creationTime.Add(1 * time.Hour)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    }
    
    func TestFileServerSortsNames(t *testing.T) { run(t, testFileServerSortsNames) }
    func testFileServerSortsNames(t *testing.T, mode testMode) {
    	const contents = "I am a fake file"
    	dirMod := time.Unix(123, 0).UTC()
    	fileMod := time.Unix(1000000000, 0).UTC()
    	fs := fakeFS{
    		"/": &fakeFileInfo{
    			dir:     true,
    			modtime: dirMod,
    			ents: []*fakeFileInfo{
    				{
    					basename: "b",
    					modtime:  fileMod,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/runtime/string.go

    	}
    	s, b := rawstring(l)
    	memmove(unsafe.Pointer(&b[0]), unsafe.Pointer(p), uintptr(l))
    	return s
    }
    
    // internal_syscall_gostring is a version of gostring for internal/syscall/unix.
    //
    //go:linkname internal_syscall_gostring internal/syscall/unix.gostring
    func internal_syscall_gostring(p *byte) string {
    	return gostring(p)
    }
    
    func gostringn(p *byte, l int) string {
    	if l == 0 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. cmd/bucket-policy.go

    		authtype = "REST-HEADER"
    	case authTypePostPolicy:
    		authtype = "POST"
    	}
    
    	args := map[string][]string{
    		"CurrentTime":      {currTime.Format(time.RFC3339)},
    		"EpochTime":        {strconv.FormatInt(currTime.Unix(), 10)},
    		"SecureTransport":  {strconv.FormatBool(r.TLS != nil)},
    		"SourceIp":         {handlers.GetSourceIPRaw(r)},
    		"UserAgent":        {r.UserAgent()},
    		"Referer":          {r.Referer()},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    import spock.lang.Specification
    
    class JavaProcessStackTracesMonitorSpec extends Specification {
    
        @Requires(UnitTestPreconditions.NotWindows)
        def 'can extract process info from unix ps()'() {
            given:
            def output = '''
              PID TTY      STAT   TIME COMMAND
     1401 ?        Ss     0:05 /lib/systemd/systemd --user
     1409 ?        S      0:00 (sd-pam)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top