Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for consuming (0.12 sec)

  1. configure.py

        print('WARNING: The NDK version in %s is %s, which is not '
              'supported by Bazel (officially supported versions: %s). Please use '
              'another version. Compiling Android targets may result in confusing '
              'errors.\n' %
              (android_ndk_home_path, ndk_version, _SUPPORTED_ANDROID_NDK_VERSIONS))
      write_action_env_to_bazelrc('ANDROID_NDK_VERSION', ndk_version)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  2. src/crypto/tls/conn.go

    // first [Conn.Read] or [Conn.Write] will call it automatically.
    func (c *Conn) HandshakeContext(ctx context.Context) error {
    	// Delegate to unexported method for named return
    	// without confusing documented signature.
    	return c.handshakeContext(ctx)
    }
    
    func (c *Conn) handshakeContext(ctx context.Context) (ret error) {
    	// Fast sync/atomic-based exit if there is no handshake in flight and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    					p += s[j:]
    					break
    				}
    			}
    			s = p
    		}
    		if s != tt.out {
    			if _, ok := tt.val.(string); ok {
    				// Don't requote the already-quoted strings.
    				// It's too confusing to read the errors.
    				t.Errorf("Sprintf(%q, %q) = <%s> want <%s>", tt.fmt, tt.val, s, tt.out)
    			} else {
    				t.Errorf("Sprintf(%q, %v) = %q want %q", tt.fmt, tt.val, s, tt.out)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// we should not create a sandbox, and just kill the pod if it is already done.
    			// if all containers are done and should not be started, there is no need to create a new sandbox.
    			// this stops confusing logs on pods whose containers all have exit codes, but we recreate a sandbox before terminating it.
    			//
    			// If ContainerStatuses is empty, we assume that we've never
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    		} else if arenaIndex(p+size-1) >= 1<<arenaBits {
    			bad = "end outside usable address space"
    		}
    		if bad != "" {
    			// This should be impossible on most architectures,
    			// but it would be really confusing to debug.
    			print("runtime: memory allocated by OS [", hex(p), ", ", hex(p+size), ") not in usable address space: ", bad, "\n")
    			throw("memory reservation exceeds address space limit")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    		// the module graph are also consistent.
    		//
    		// If we're wrong, Go 1.16 in -mod=readonly mode will error out with
    		// "updates to go.mod needed", which would be very confusing. So instead,
    		// we'll double-check that our reasoning above actually holds — if it
    		// doesn't, we'll emit an internal error and hopefully the user will report
    		// it as a bug.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/riscv/obj.go

    				p.Reg = obj.REG_NONE
    				p.To = obj.Addr{Type: obj.TYPE_REG, Reg: REG_LR}
    			}
    
    			// "Add back" the stack removed in the previous instruction.
    			//
    			// This is to avoid confusing pctospadj, which sums
    			// Spadj from function entry to each PC, and shouldn't
    			// count adjustments from earlier epilogues, since they
    			// won't affect later PCs.
    			p.Spadj = int32(stacksize)
    
    		case AADDI:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top