Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for unmix (0.06 sec)

  1. cmd/xl-storage.go

    	if runtime.GOOS == "windows" && len(pathName) > 1024 {
    		return errFileNameTooLong
    	}
    
    	// On Unix we reject paths if they are just '.', '..' or '/'
    	if pathName == "." || pathName == ".." || pathName == slashSeparator {
    		return errFileAccessDenied
    	}
    
    	// Check each path segment length is > 255 on all Unix
    	// platforms, look for this value as NAME_MAX in
    	// /usr/include/linux/limits.h
    	var count int64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
  2. src/cmd/go/internal/test/test.go

    		if data, _ := lockedfile.Read(filepath.Join(dir, "testexpire.txt")); len(data) > 0 && data[len(data)-1] == '\n' {
    			if t, err := strconv.ParseInt(string(data[:len(data)-1]), 10, 64); err == nil {
    				testCacheExpire = time.Unix(0, t)
    			}
    		}
    	}
    
    	b := work.NewBuilder("")
    	defer func() {
    		if err := b.Close(); err != nil {
    			base.Fatal(err)
    		}
    	}()
    
    	var builds, runs, prints []*work.Action
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    For details on the convenience method used in the samples, see link:{javadocPath}/org/gradle/api/file/ConfigurableFilePermissions.html#unix-java.lang.String-[ConfigurableFilePermissions.unix(String)].
    
    Using empty configuration blocks for file or directory permissions still sets them explicitly, just to fixed default values.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    				}
    				tr.Status.Token = fmt.Sprintf("%v:%v:%d:%v", action.GetNamespace(), testAccount, *tr.Spec.ExpirationSeconds, tr.Spec.Audiences)
    				tr.Status.ExpirationTimestamp = meta.NewTime(time.Unix(1, 1))
    				return true, tr, nil
    			}))
    			plug, tmpDir := newTestPlugin(t, client)
    			defer os.RemoveAll(tmpDir)
    			mounter, err := plug.NewMounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

    LOG_SPEC=${LOG_SPEC:-""}
    LOG_DIR=${LOG_DIR:-"/tmp"}
    TMP_DIR=${TMP_DIR:-$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")}
    CONTAINER_RUNTIME_ENDPOINT=${CONTAINER_RUNTIME_ENDPOINT:-"unix:///run/containerd/containerd.sock"}
    RUNTIME_REQUEST_TIMEOUT=${RUNTIME_REQUEST_TIMEOUT:-"2m"}
    IMAGE_SERVICE_ENDPOINT=${IMAGE_SERVICE_ENDPOINT:-""}
    CPU_CFS_QUOTA=${CPU_CFS_QUOTA:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    			})
    		}
    		for i := 0; i < containers; i++ {
    			pod.Spec.Containers = append(pod.Spec.Containers, v1.Container{
    				Name: fmt.Sprintf("%d", i),
    			})
    		}
    		pod.Status.StartTime = &metav1.Time{Time: time.Unix(1, 0).UTC()}
    		for _, fn := range fns {
    			fn(pod)
    		}
    		return pod
    	}
    	expectTerminatedUnknown := func(t *testing.T, state v1.ContainerState) {
    		t.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. src/net/http/request.go

    	if !httpguts.ValidHostHeader(host) {
    		// Historically, we would truncate the Host header after '/' or ' '.
    		// Some users have relied on this truncation to convert a network
    		// address such as Unix domain socket path into a valid, ignored
    		// Host header (see https://go.dev/issue/61431).
    		//
    		// We don't preserve the truncation, because sending an altered
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    					}
    					return nil, err
    				}
    			} else {
    				// Get the statuses of all containers visible to the pod and
    				// timestamp from sandboxStatus.
    				timestamp = time.Unix(resp.Timestamp, 0)
    				for _, cs := range resp.ContainersStatuses {
    					cStatus := m.convertToKubeContainerStatus(cs)
    					containerStatuses = append(containerStatuses, cStatus)
    				}
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	now := nanotime()
    	sec, nsec, _ := time_now()
    	unixNow := sec*1e9 + int64(nsec)
    	work.pauseNS += now - stw.startedStopping
    	work.tEnd = now
    	atomic.Store64(&memstats.last_gc_unix, uint64(unixNow)) // must be Unix time to make sense to user
    	atomic.Store64(&memstats.last_gc_nanotime, uint64(now)) // monotonic time for us
    	memstats.pause_ns[memstats.numgc%uint32(len(memstats.pause_ns))] = uint64(work.pauseNS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/encoding/json/decode_test.go

    		PTime:     new(time.Time),
    		PBigInt:   new(big.Int),
    		PText:     new(MustNotUnmarshalText),
    		PStruct:   new(struct{}),
    		PBuffer:   new(bytes.Buffer),
    		Raw:       RawMessage("123"),
    		Time:      time.Unix(123456789, 0),
    		BigInt:    *big.NewInt(123),
    	}
    
    	before := nulls.Time.String()
    
    	err := Unmarshal(jsonData, &nulls)
    	if err != nil {
    		t.Errorf("Unmarshal of null values failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top