Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for distinguish (0.74 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/bucket-replication.go

    			ReplicationMTime:        dobj.DeleteMarkerMTime.Time,
    			ReplicationStatus:       minio.ReplicationStatusReplica,
    			ReplicationRequest:      true, // always set this to distinguish between `mc mirror` replication and serverside
    		},
    	})
    	if rmErr != nil {
    		rinfo.Err = rmErr
    		if dobj.VersionID == "" {
    			rinfo.ReplicationStatus = replication.Failed
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K 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. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  format: int32
                                  type: integer
                                splitExternalLocalOriginErrors:
                                  description: Determines whether to distinguish local
                                    origin failures from external errors.
                                  type: boolean
                              type: object
                            portLevelSettings:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	good &= good << 2
    	good &= good << 1
    	good = uint8(int8(good) >> 7)
    
    	// Zero the padding length on error. This ensures any unchecked bytes
    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. 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)
Back to top