Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for scope_ (0.13 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if ps.last == '<' {
    		ps.writeByte(' ')
    	}
    
    	scopes := ps.scopes
    	ps.scopes = 0
    
    	ps.writeByte('<')
    	ps.printList(t.Args, ps.isEmpty)
    	if ps.last == '>' && !ps.llvmStyle {
    		// Avoid syntactic ambiguity in old versions of C++.
    		ps.writeByte(' ')
    	}
    	ps.writeByte('>')
    
    	ps.scopes = scopes
    }
    
    func (t *Template) Traverse(fn func(AST) bool) {
    	if fn(t) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    		return Convert_v1alpha2_AllocationResult_To_resource_AllocationResult(a.(*v1alpha2.AllocationResult), b.(*resource.AllocationResult), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*resource.AllocationResult)(nil), (*v1alpha2.AllocationResult)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    		steps          []step
    	}{
    		{
    			name: "good child in ns1 -> cluster-scoped owner",
    			steps: []step{
    				// setup
    				createObjectInClient("", "v1", "nodes", "", makeMetadataObj(node1)),
    				createObjectInClient("", "v1", "pods", "ns1", makeMetadataObj(pod1ns1, node1)),
    				// observe namespaced child with not-yet-observed cluster-scoped parent
    				processEvent(makeAddEvent(pod1ns1, node1)),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    expression which will be evaluated by CEL. ref: https://github.com/google/cel-spec The Rule is scoped to the location of the x-kubernetes-validations extension in the schema. The `self` variable in the CEL expression is bound to the scoped value. Example: - Rule scoped to the root of a resource with a status subresource: {\"rule\": \"self.status.actual <= self.spec.maxDesired\"}\n\nIf the Rule is scoped to an object with properties, the accessible properties of the object are field selectable via...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      }
    }
    
    void CreateSubgraphNotTouchingRefVar(const Scope& s) {
      Output constant =
          ops::Const(s.WithOpName("constant_normal"), Input::Initializer(0.0));
      Output neg = ops::Negate(s.WithOpName("negate_normal"), constant);
      Output add = ops::Add(s.WithOpName("add_normal"), neg, neg);
    }
    
    TEST(EncapsulateSubgraphsTest, NoRefVarsNoAttr) {
      Scope root = Scope::NewRootScope().ExitOnError();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

              },
              "scope": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

              },
              "scope": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    		i -= len(*m.Namespace)
    		copy(dAtA[i:], *m.Namespace)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Namespace)))
    		i--
    		dAtA[i] = 0x2a
    	}
    	if m.Scope != nil {
    		i -= len(*m.Scope)
    		copy(dAtA[i:], *m.Scope)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.Scope)))
    		i--
    		dAtA[i] = 0x22
    	}
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  9. fastapi/routing.py

                    dependant=self.dependant,
                    dependency_overrides_provider=dependency_overrides_provider,
                )
            )
    
        def matches(self, scope: Scope) -> Tuple[Match, Scope]:
            match, child_scope = super().matches(scope)
            if match != Match.NONE:
                child_scope["route"] = self
            return match, child_scope
    
    
    class APIRoute(routing.Route):
        def __init__(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    TopLevelDecl  = Declaration | FunctionDecl | MethodDecl .
    </pre>
    
    <p>
    The <i>scope</i> of a declared identifier is the extent of source text in which
    the identifier denotes the specified constant, type, variable, function, label, or package.
    </p>
    
    <p>
    Go is lexically scoped using <a href="#Blocks">blocks</a>:
    </p>
    
    <ol>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top