Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for applyTo (0.23 sec)

  1. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/ConnectionSpec;-><clinit>()V
    HSPLokhttp3/ConnectionSpec;-><init>(ZZ[Ljava/lang/String;[Ljava/lang/String;)V
    HSPLokhttp3/ConnectionSpec;->apply$okhttp(Ljavax/net/ssl/SSLSocket;Z)V
    HSPLokhttp3/ConnectionSpec;->cipherSuites()Ljava/util/List;
    HSPLokhttp3/ConnectionSpec;->equals(Ljava/lang/Object;)Z
    HSPLokhttp3/ConnectionSpec;->hashCode()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    		t.Errorf("using %s expected error should contain:\n%s\nin test case: %s\nbut got:\n%s\n", getSchemaType(schema), expectedError, description, err)
    	}
    	if err != nil {
    		t.Errorf("using %s error: %s\nin test case: %s\ncannot apply patch:\n%s\nto original:\n%s\n",
    			getSchemaType(schema), err, description, jsonToYAMLOrError(patch), jsonToYAMLOrError(original))
    		return
    	}
    
    	if !reflect.DeepEqual(result, expected) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top