Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 85 for Street (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            } else if (event instanceof ProblemEvent) {
                problemListeners.getSource().statusChanged(event);
            } else {
                // Everything else treat as a generic operation
                buildOperationProgressListeners.getSource().statusChanged(event);
            }
        }
    
        private void broadcastTestProgressEvent(InternalTestProgressEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. 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 (0)
  3. 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)
  4. 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 (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
Back to top