Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for distinguish (0.17 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    		return nil
    	}
    	return err
    }
    
    // configureIPv6Addresses sets up a new IP address on local interface. This is used as the source IP
    // for inbound traffic to distinguish traffic we want to capture vs traffic we do not. This is needed
    // for IPv6 but not IPv4, as IPv4 defaults to `netmask 255.0.0.0`, which allows binding to addresses
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. src/os/exec.go

    // A Signal represents an operating system signal.
    // The usual underlying implementation is operating system-dependent:
    // on Unix it is syscall.Signal.
    type Signal interface {
    	String() string
    	Signal() // to distinguish from other Stringers
    }
    
    // Getpid returns the process id of the caller.
    func Getpid() int { return syscall.Getpid() }
    
    // Getppid returns the process id of the caller's parent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/fetch.go

    	}
    }
    
    // HaveSum returns true if the go.sum file contains an entry for mod.
    // The entry's hash must be generated with a known hash algorithm.
    // mod.Version may have a "/go.mod" suffix to distinguish sums for
    // .mod and .zip files.
    func HaveSum(mod module.Version) bool {
    	goSum.mu.Lock()
    	defer goSum.mu.Unlock()
    	inited, err := initGoSum()
    	if err != nil || !inited {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    type ABI uint8
    
    const (
    	// ABI0 is the stable stack-based ABI. It's important that the
    	// value of this is "0": we can't distinguish between
    	// references to data and ABI0 text symbols in assembly code,
    	// and hence this doesn't distinguish between symbols without
    	// an ABI and text symbols with ABI0.
    	ABI0 ABI = iota
    
    	// ABIInternal is the internal ABI that may change between Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    	JobTemplate JobTemplateSpec
    
    	// The number of successful finished jobs to retain.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// +optional
    	SuccessfulJobsHistoryLimit *int32
    
    	// The number of failed finished jobs to retain.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// +optional
    	FailedJobsHistoryLimit *int32
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell.go

    }
    
    func (e *cmdError) Error() string {
    	var msg string
    	if e.needsPath {
    		// Ensure the import path is part of the message.
    		// Clearly distinguish the description from the import path.
    		msg = fmt.Sprintf("# %s\n# [%s]\n", e.importPath, e.desc)
    	} else {
    		msg = "# " + e.desc + "\n"
    	}
    	return msg + e.text
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/gateway.go

    							}
    
    							// Both servers are HTTPS servers. Make sure the port names are different so that RDS can pick out individual servers.
    							// We cannot have two servers with same port name because we need the port name to distinguish one HTTPS server from another.
    							// We cannot merge two HTTPS servers even if their TLS settings have same path to the keys, because we don't know if the contents
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    	// h2. Clients would then connect with h2, while the upstream may not support it. This is not a
    	// concern for plaintext, but we do not have a way to distinguish https vs http here. If users of
    	// gateway want this behavior, they can configure UseClientProtocol explicitly.
    	if cb.sidecarProxy() && port.Protocol.IsUnsupported() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. src/internal/trace/gc.go

    				util[len(util)-1] = mu
    			}
    			return util
    		}
    	}
    	return append(util, mu)
    }
    
    // totalUtil is total utilization, measured in nanoseconds. This is a
    // separate type primarily to distinguish it from mean utilization,
    // which is also a float64.
    type totalUtil float64
    
    func totalUtilOf(meanUtil float64, dur int64) totalUtil {
    	return totalUtil(meanUtil * float64(dur))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/runtime/asm_loong64.s

    	ADDV	$-16, R3
    	MOVV	R4, 8(R3)
    	MOVV	R0, 0(R3)
    	JAL	(R20)
    	JMP	runtime·badmcall2(SB)
    
    // systemstack_switch is a dummy routine that systemstack leaves at the bottom
    // of the G stack. We need to distinguish the routine that
    // lives at the bottom of the G stack from the one that lives
    // at the top of the system stack because the one at the top of
    // the system stack terminates the stack walk (see topofstack()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top