Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for applyTo (0.61 sec)

  1. pkg/config/validation/validation.go

    				errs = AppendWarningf(errs,
    					"sidecar: HTTP connection pool settings are configured for port %d (%q) but its protocol is not HTTP (%s); only TCP settings will apply",
    					i.Port.Number, i.Port.Name, i.Port.Protocol)
    			}
    		}
    
    		// Validate top-level connection pool setting
    		errs = AppendValidation(errs, validateConnectionPool(rule.InboundConnectionPool))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    }
    
    // Length returns the column type length for variable length column types such
    // as text and binary field types. If the type length is unbounded the value will
    // be [math.MaxInt64] (any database limits will still apply).
    // If the column type is not variable length, such as an int, or if not supported
    // by the driver ok is false.
    func (ci *ColumnType) Length() (length int64, ok bool) {
    	return ci.length, ci.hasLength
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    // 1. Decrement nmspinning.
    // 2. #StoreLoad-style memory barrier.
    // 3. Check all per-P work queues and GC for new work.
    //
    // Note that all this complexity does not apply to global run queue as we are
    // not sloppy about thread unparking when submitting to global queue. Also see
    // comments for nmspinning manipulation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return precPrimary
    }
    
    // Template is a template with arguments.
    type Template struct {
    	Name AST
    	Args []AST
    }
    
    func (t *Template) print(ps *printState) {
    	// Inner types apply to the template as a whole, they don't
    	// cross over into the template.
    	holdInner := ps.inner
    	defer func() { ps.inner = holdInner }()
    
    	ps.inner = nil
    	ps.print(t.Name)
    
    	if !ps.tparams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		//
    		// b.WorkDir is always either trimmed or rewritten to
    		// the literal string "/tmp/go-build".
    	} else if !strings.HasPrefix(p.Dir, b.WorkDir) {
    		// -trimpath is not set and no other rewrite rules apply,
    		// so the object file may refer to the absolute directory
    		// containing the package.
    		fmt.Fprintf(h, "dir %s\n", p.Dir)
    	}
    
    	if p.Module != nil {
    		fmt.Fprintf(h, "go %s\n", p.Module.GoVersion)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

              mlir::IntegerType::get(value_tensor.getContext(), 32)),
          llvm::ArrayRef(return_squeeze_shape));
    }
    
    // This is a utility function to deduce the effective permutation to apply on
    // TFL_TransposeOp when the tensor has some dimensions with value==1
    // Example- "tfl.transpose"(tensor<56x8x56x1x1x1x7xf32>, [4, 5, 1, 2, 0, 6, 3])
    // Permutation before squeese is [4, 5, 1, 2, 0, 6, 3] becomes [1, 2, 0, 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		if tooBig {
    			w.requestTooLarge()
    			delHeader("Connection")
    			setHeader.connection = "close"
    		}
    	}
    
    	code := w.status
    	if bodyAllowedForStatus(code) {
    		// If no content type, apply sniffing algorithm to body.
    		_, haveType := header["Content-Type"]
    
    		// If the Content-Encoding was set and is non-blank,
    		// we shouldn't sniff the body. See Issue 31753.
    		ce := header.Get("Content-Encoding")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. fastapi/applications.py

                    """
                ),
            ] = None,
            callbacks: Annotated[
                Optional[List[BaseRoute]],
                Doc(
                    """
                    OpenAPI callbacks that should apply to all *path operations*.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  9. src/reflect/value.go

    import (
    	"errors"
    	"internal/abi"
    	"internal/goarch"
    	"internal/itoa"
    	"internal/unsafeheader"
    	"math"
    	"runtime"
    	"unsafe"
    )
    
    // Value is the reflection interface to a Go value.
    //
    // Not all methods apply to all kinds of values. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      local node_labels
      node_labels="$(build-windows-node-labels)"
      if [[ -n "${node_labels:-}" ]]; then
        flags+=" --node-labels=${node_labels}"
      fi
    
      # Concatenate common and windows-only node taints and apply them.
      local node_taints="${NODE_TAINTS:-}"
      if [[ -n "${node_taints}" && -n "${WINDOWS_NODE_TAINTS:-}" ]]; then
        node_taints+=":${WINDOWS_NODE_TAINTS}"
      else
        node_taints="${WINDOWS_NODE_TAINTS:-}"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top