Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 85 for wbMove (0.14 sec)

  1. pkg/proxy/nftables/proxier.go

    // "5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80".
    func servicePortEndpointChainNameBase(servicePortName *proxy.ServicePortName, protocol, endpoint string) string {
    	// As above in servicePortChainNameBase: Namespace, Service, Port, Protocol, and
    	// EndpointPort are all safe to copy into the chain name directly. But if
    	// EndpointIP is IPv6 then it will contain colons, which aren't allowed in a chain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	if rebuildall {
    		xremoveall(objGoBootstrap)
    	}
    	xmkdirall(objGoBootstrap)
    	xatexit(func() { xremoveall(objGoBootstrap) })
    
    	// Create tool directory.
    	// We keep it in pkg/, just like the object directory above.
    	if rebuildall {
    		xremoveall(tooldir)
    	}
    	xmkdirall(tooldir)
    
    	// Remove tool binaries from before the tool/gohostos_gohostarch
    	xremoveall(pathf("%s/bin/tool", goroot))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    // (from writeLoop above) happened and was successful.
    func (pc *persistConn) wroteRequest() bool {
    	select {
    	case err := <-pc.writeErrCh:
    		// Common case: the write happened well before the response, so
    		// avoid creating a timer.
    		return err == nil
    	default:
    		// Rare case: the request was written in writeLoop above but
    		// before it could send to pc.writeErrCh, the reader read it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. configure.py

        error_msg: (String) String with one and only one '%s'. Formatted with each
          invalid response upon check_success(input) failure.
        suppress_default_error: (Bool) Suppress the above error message in favor of
          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
    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. src/cmd/link/internal/ld/elf.go

     * modification, are permitted provided that the following conditions
     * are met:
     * 1. Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     * 2. Redistributions in binary form must reproduce the above copyright
     *    notice, this list of conditions and the following disclaimer in the
     *    documentation and/or other materials provided with the distribution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

        private SmbTreeHandleImpl treeHandle;
    
    
        /**
         * Constructs an SmbFile representing a resource on an SMB network such as
         * a file or directory. See the description and examples of smb URLs above.
         *
         * @param url
         *            A URL string
         * @throws MalformedURLException
         *             If the <code>parent</code> and <code>child</code> parameters
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  7. src/cmd/compile/internal/ssa/debug.go

    // OpArg{Int,Float}Reg values, inserting additional values in
    // cases where they are missing. Example:
    //
    //	func foo(s string, used int, notused int) int {
    //	  return len(s) + used
    //	}
    //
    // In the function above, the incoming parameter "used" is fully live,
    // "notused" is not live, and "s" is partially live (only the length
    // field of the string is used). At the point where debug value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CondSelect x y bool) && flagArg(bool) == nil => (ISEL [6] x y (CMPconst [0] (ANDconst [1] bool)))
    // Fold any CR -> GPR -> CR transfers when applying the above rule.
    (ISEL [6] x y (CMPconst [0] (ANDconst [1] (SETBC [c] cmp)))) => (ISEL [c] x y cmp)
    (ISEL [6] x y ((CMP|CMPW)const [0] (SETBC [c] cmp))) => (ISEL [c] x y cmp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      // While the last several tensors could be optional tensors for an tfl op, the
      // number of input operands could vary. Gets the min/max number of
      // operands from tflite op name.
      // Also, since the above code special-handles the `tfl.reshape` op and add an
      // additional input, we put these function block here.
      llvm::MinMax input_min_max = mlir::OperandNumbersMinMax(op_name);
      int input_max_num = input_min_max.Max;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    			parallelLabelHog(ctx, dur, gogc)
    		})
    	})
    
    	// Two conditions to check:
    	// * labelHog should always be labeled.
    	// * The label should _only_ appear on labelHog and the Do call above.
    	for _, s := range p.Sample {
    		isLabeled := s.Label != nil && contains(s.Label["key"], "value")
    		var (
    			mayBeLabeled     bool
    			mustBeLabeled    string
    			mustNotBeLabeled string
    		)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top