Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for Street (0.13 sec)

  1. cmd/xl-storage.go

    	s.fsType = info.FSType
    
    	if !globalIsCICD && !globalIsErasureSD {
    		var rootDrive bool
    		if globalRootDiskThreshold > 0 {
    			// Use MINIO_ROOTDISK_THRESHOLD_SIZE to figure out if
    			// this disk is a root disk. treat those disks with
    			// size less than or equal to the threshold as rootDrives.
    			rootDrive = info.Total <= globalRootDiskThreshold
    		} else {
    			rootDrive, err = disk.IsRootDisk(s.drivePath, SlashSeparator)
    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/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rs1", ins.rs1)
    	wantNoneReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateRaw(ctxt *obj.Link, ins *instruction) {
    	// Treat the raw value specially as a 32-bit unsigned integer.
    	// Nobody wants to enter negative machine code.
    	if ins.imm < 0 || 1<<32 <= ins.imm {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. configure.py

        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
      """
      version = version.split('-')[0]
      version_segments = version.split('.')
      # Treat "0.24" as "0.24.0"
      if len(version_segments) == 2:
        version_segments.append('0')
      for seg in version_segments:
        if not seg.isdigit():
          return None
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  4. pkg/proxy/nftables/proxier.go

    					),
    				})
    			} else {
    				// If we are only using same-node endpoints, we can retain the
    				// source IP in most cases.
    
    				if proxier.localDetector.IsImplemented() {
    					// Treat all locally-originated pod -> external destination
    					// traffic as a special-case.  It is subject to neither
    					// form of traffic policy, which simulates going up-and-out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				return a
    			case 'M':
    				if a == nil {
    					st.fail("unexpected lambda initializer")
    				}
    				// This is the initializer scope for a
    				// lambda.  We don't need to record
    				// it.  The normal code will treat the
    				// variable has a type scope, which
    				// gives appropriate output.
    				st.advance(1)
    				continue
    			case 'J':
    				// It appears that in some cases clang
    				// can emit a J for a template arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. hack/tools/go.sum

    github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4/go.mod h1:Izgrg8RkN3rCIMLGE9CyYmU9pY2Jer6DgANEnZ/L/cQ=
    github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
    github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
    github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	}
    
    	switch msg := msg.(type) {
    	case *newSessionTicketMsgTLS13:
    		return c.handleNewSessionTicket(msg)
    	case *keyUpdateMsg:
    		return c.handleKeyUpdate(msg)
    	}
    	// The QUIC layer is supposed to treat an unexpected post-handshake CertificateRequest
    	// as a QUIC-level PROTOCOL_VIOLATION error (RFC 9001, Section 4.4). Returning an
    	// unexpected_message alert here doesn't provide it with enough information to distinguish
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    					"-j", string(kubeMarkMasqChain))
    			} else {
    				// If we are only using same-node endpoints, we can retain the
    				// source IP in most cases.
    
    				if proxier.localDetector.IsImplemented() {
    					// Treat all locally-originated pod -> external destination
    					// traffic as a special-case.  It is subject to neither
    					// form of traffic policy, which simulates going up-and-out
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    					base.Errorf("go: vendored module %v should be required explicitly in go.mod", m)
    					inconsistent = true
    				}
    			}
    			if inconsistent {
    				base.Fatal(errGoModDirty)
    			}
    
    			// Now we can treat the rest of the module graph as effectively “pruned
    			// out”, as though we are viewing the main module from outside: in vendor
    			// mode, the root requirements *are* the complete module graph.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `SimpleFileCollection` has been removed — use link:{groovyDslPath}/org.gradle.api....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top