Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 368 for unmix (0.04 sec)

  1. src/runtime/debug/garbage.go

    	// maxPause entries) and then three more: Unix ns time of last GC,
    	// number of GC, and total pause time in nanoseconds. Here we
    	// depend on the fact that time.Duration's native unit is
    	// nanoseconds, so the pauses and the total pause time do not need
    	// any conversion.
    	readGCStats(&stats.Pause)
    	n := len(stats.Pause) - 3
    	stats.LastGC = time.Unix(0, int64(stats.Pause[n]))
    	stats.NumGC = int64(stats.Pause[n+1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/utils.go

    		},
    	}
    	cj.Spec.JobTemplate.Spec.DeepCopyInto(&job.Spec)
    	return job, nil
    }
    
    // getTimeHash returns Unix Epoch Time in minutes
    func getTimeHashInMinutes(scheduledTime time.Time) int64 {
    	return scheduledTime.Unix() / 60
    }
    
    // byJobStartTime sorts a list of jobs by start timestamp, using their names as a tie breaker.
    type byJobStartTime []*batchv1.Job
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/os/signal/signal_cgo_test.go

    		if err := unix.Tcsetpgrp(ptyFD, pgrp); err != nil {
    			return fmt.Errorf("error setting tty process group: %w", err)
    		}
    
    		// Give the kernel time to potentially wake readers and have
    		// them return EINTR (darwin does this).
    		time.Sleep(pause)
    
    		// Give TTY back.
    		pid := int32(cmd.Process.Pid) // assume that pid_t is int32
    		if err := unix.Tcsetpgrp(ptyFD, pid); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/net/net_fake.go

    			return &AddrError{
    				Err:  "port out of range",
    				Addr: sa.String(),
    			}
    		}
    		return nil
    
    	case "unix", "unixgram", "unixpacket":
    		sa, ok := sa.(*UnixAddr)
    		if !ok {
    			return &AddrError{
    				Err:  "non-Unix address for " + net + " network",
    				Addr: sa.String(),
    			}
    		}
    		if sa.Name != "" {
    			i := len(sa.Name) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    // underlying socket type supports it, you can do so via a raw system call as
    // follows:
    //
    //	msg := &unix.Msghdr{
    //	    Control: &oob[0],
    //	}
    //	msg.SetControllen(len(oob))
    //	n, _, errno := unix.Syscall(unix.SYS_SENDMSG, uintptr(fd), uintptr(unsafe.Pointer(msg)), flags)
    func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err error) {
    	var iov [1]Iovec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tls.go

    					if destinationCIDR != "" {
    						destinationCIDRs = []string{destinationCIDR}
    					}
    					// Only set CIDR match if the listener is bound to an IP.
    					// If its bound to a unix domain socket, then ignore the CIDR matches
    					// Unix domain socket bound ports have Port value set to 0
    					if len(match.DestinationSubnets) > 0 && listenPort.Port > 0 {
    						destinationCIDRs = match.DestinationSubnets
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

            }
        }
    
        static final class Unix implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return OperatingSystem.current().isUnix()
            }
        }
    
        static final class UnixDerivative implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                satisfied(MacOs) || satisfied(Linux) || satisfied(Unix)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/net/http/fs.go

    		return condFalse
    	}
    	t, err := ParseTime(ir)
    	if err != nil {
    		return condFalse
    	}
    	if t.Unix() == modtime.Unix() {
    		return condTrue
    	}
    	return condFalse
    }
    
    var unixEpochTime = time.Unix(0, 0)
    
    // isZeroTime reports whether t is obviously unspecified (either zero or Unix()=0).
    func isZeroTime(t time.Time) bool {
    	return t.IsZero() || t.Equal(unixEpochTime)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/README

    	Otherwise, add the listed key=value pairs to the environment
    	or print the listed keys.
    
    exec program [args...] [&]
    	run an executable program with arguments
    
    	Note that 'exec' does not terminate the script (unlike Unix
    	shells).
    
    exists [-readonly] [-exec] file...
    	check that files exist
    
    
    go [args...] [&]
    	run the 'go' program provided by the script host
    
    
    grep [-count=N] [-q] 'pattern' file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/log/slog/value.go

    	num uint64
    	// If any is of type Kind, then the value is in num as described above.
    	// If any is of type *time.Location, then the Kind is Time and time.Time value
    	// can be constructed from the Unix nanos in num and the location (monotonic time
    	// is not preserved).
    	// If any is of type stringptr, then the Kind is String and the string value
    	// consists of the length in num and the pointer in any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top