Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 148 for variable1 (0.15 sec)

  1. src/net/http/request.go

    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrHeaderTooLong = &ProtocolError{"header too long"}
    
    	// Deprecated: ErrShortBody is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrShortBody = &ProtocolError{"entity body too short"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            visitAnnotations(ve);
            Variable v = ve.getAccessedVariable();
    
            if (!(v instanceof DynamicVariable) && !checkingVariableTypeInDeclaration) {
                /*
                 *  GROOVY-4009: when a normal variable is simply being used, there is no need to try to
                 *  resolve its type. Variable type resolve should proceed only if the variable is being declared.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // starts for it to take effect.  For example, you can define a global
    // variable like this:
    //
    //   testing::Environment* const foo_env =
    //       testing::AddGlobalTestEnvironment(new FooEnvironment);
    //
    // However, we strongly recommend you to write your own main() and
    // call AddGlobalTestEnvironment() there, as relying on initialization
    // of global variables makes the code harder to read and may cause
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // starts for it to take effect.  For example, you can define a global
    // variable like this:
    //
    //   testing::Environment* const foo_env =
    //       testing::AddGlobalTestEnvironment(new FooEnvironment);
    //
    // However, we strongly recommend you to write your own main() and
    // call AddGlobalTestEnvironment() there, as relying on initialization
    // of global variables makes the code harder to read and may cause
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    		throw("size of Workbuf is suboptimal")
    	}
    	// No sweep on the first cycle.
    	sweep.active.state.Store(sweepDrainedMask)
    
    	// Initialize GC pacer state.
    	// Use the environment variable GOGC for the initial gcPercent value.
    	// Use the environment variable GOMEMLIMIT for the initial memoryLimit value.
    	gcController.init(readGOGC(), readGOMEMLIMIT())
    
    	work.startSema = 1
    	work.markDoneSema = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    // target represent the (signature) type and description of the LHS
    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	gcflags   string // If non-empty, build with -gcflags=all=X
    	ldflags   string // If non-empty, build with -ldflags=X
    	buildmode string // If non-empty, -buildmode flag
    
    	env []string // Environment variables to add, as KEY=VAL. KEY= unsets a variable
    
    	runOnHost bool // When cross-compiling, run this test on the host instead of guest
    
    	// variant, if non-empty, is a name used to distinguish different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    use the Go module mirror, which takes on the security risk of running the
    version control commands using a custom sandbox.
    
    The GOVCS variable can be used to change the allowed version control systems
    for specific packages (identified by a module or import path).
    The GOVCS variable applies when building package in both module-aware mode
    and GOPATH mode. When using modules, the patterns match against the module path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    type exprKind int
    
    const (
    	conversion exprKind = iota
    	expression
    	statement
    )
    
    // target represent the (signature) type and description of the LHS
    // variable of an assignment, or of a function result variable.
    type target struct {
    	sig  *Signature
    	desc string
    }
    
    // newTarget creates a new target for the given type and description.
    // The result is nil if typ is not a signature.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. src/html/template/exec_test.go

    	{"dot map", "<{{.}}>", "&lt;map[two:22]>", map[string]int{"two": 22}, true},
    	{"dot struct", "<{{.}}>", "&lt;{7 seven}>", struct {
    		a int
    		b string
    	}{7, "seven"}, true},
    
    	// Variables.
    	{"$ int", "{{$}}", "123", 123, true},
    	{"$.I", "{{$.I}}", "17", tVal, true},
    	{"$.U.V", "{{$.U.V}}", "v", tVal, true},
    	{"declare in action", "{{$x := $.U.V}}{{$x}}", "v", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top