Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 110 for value6 (0.24 sec)

  1. src/cmd/compile/internal/types2/decl.go

    				lhs0[i] = NewVar(name.Pos(), pkg, name.Value, nil)
    			}
    
    			// initialize all variables
    			values := syntax.UnpackListExpr(s.Values)
    			for i, obj := range lhs0 {
    				var lhs []*Var
    				var init syntax.Expr
    				switch len(values) {
    				case len(s.NameList):
    					// lhs and rhs match
    					init = values[i]
    				case 1:
    					// rhs is expected to be a multi-valued expression
    					lhs = lhs0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/runtime/mbarrier.go

    	reflect_typedmemmove(typ, dst, src)
    }
    
    // reflectcallmove is invoked by reflectcall to copy the return values
    // out of the stack and into the heap, invoking the necessary write
    // barriers. dst, src, and size describe the return value area to
    // copy. typ describes the entire frame (not just the return values).
    // typ may be nil, which indicates write barriers are not needed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/api.go

    // Builtins are not considered values. Constant values have a non-
    // nil Value.
    func (tv TypeAndValue) IsValue() bool {
    	switch tv.mode {
    	case constant_, variable, mapindex, value, nilvalue, commaok, commaerr:
    		return true
    	}
    	return false
    }
    
    // IsNil reports whether the corresponding expression denotes the
    // predeclared value nil. Depending on context, it may have been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            def aClass = file("src/main/java/foo/Foo.java") << """
                package foo;
                public class Foo {
                    String v = "value1";
                }
            """
            run language.compileTaskName
            aClass.text = aClass.text.replace('1', '2')
            run language.compileTaskName, '-d'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/archive/tar/reader_test.go

    		},
    		ok: false,
    	}, {
    		in: map[string]string{
    			"missing":          "missing",
    			"SCHILY.xattr.key": "value",
    		},
    		want: &Header{
    			Xattrs: map[string]string{"key": "value"},
    			PAXRecords: map[string]string{
    				"missing":          "missing",
    				"SCHILY.xattr.key": "value",
    			},
    		},
    		ok: true,
    	}}
    
    	for i, v := range vectors {
    		got := new(Header)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  6. tests/integration/security/jwt_test.go

    								headers.Authorization: "",
    								"X-Test-Payload":      payload3,
    								"X-Jwt-Iss":           "******@****.***",
    								"X-Jwt-Iat":           "1604008018",
    								"X-Jwt-Nested-Claim":  "valueC",
    							}))
    					},
    				},
    			}))
    
    			t.NewSubTest("authn-authz").Run(newTest("testdata/requestauthn/authn-authz.yaml.tmpl", []testCase{
    				{
    					name: "valid-token",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/scoring.go

    // appears on panic path)
    //
    // 2) adjustments that take into account specific interesting values
    // passed at a call site (ex: passing a constant that could result in
    // cprop/deadcode in the caller)
    //
    // 3) adjustments that take into account values returned from the call
    // at a callsite (ex: call always returns the same inlinable function,
    // and return value flows unmodified into an indirect call)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		// the node3(node3) that have the label {"region": "India"}, match the topology key but have a different label value, don't have existing pods that match the labelSelector,
    		// get a low score.
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/interface.go

    var PodsToActivateKey StateKey = "kubernetes.io/pods-to-activate"
    
    // PodsToActivate stores pods to be activated.
    type PodsToActivate struct {
    	sync.Mutex
    	// Map is keyed with namespaced pod name, and valued with the pod.
    	Map map[string]*v1.Pod
    }
    
    // Clone just returns the same state.
    func (s *PodsToActivate) Clone() StateData {
    	return s
    }
    
    // NewPodsToActivate instantiates a PodsToActivate object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. src/net/lookup_test.go

    	// Insert a value into it.
    	key, value := "key-1", 2
    	ctx = context.WithValue(ctx, key, value)
    
    	// Now use the "values preserving context" like
    	// we would for LookupIPAddr. See Issue 28600.
    	ctx = withUnexpiredValuesPreserved(ctx)
    
    	// Lookup before expiry.
    	if g, w := ctx.Value(key), value; g != w {
    		t.Errorf("Lookup before expiry: Got %v Want %v", g, w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top