Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for scope_ (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

        inline fun addNetworkInterceptor(crossinline block: (chain: Interceptor.Chain) -> Response) =
          addNetworkInterceptor(Interceptor { chain -> block(chain) })
    
        /**
         * Configure a single client scoped listener that will receive all analytic events for this
         * client.
         *
         * @see EventListener for semantics and restrictions on listener implementations.
         */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		check.overflow(x, opPos(x.expr))
    
    	case *syntax.FuncLit:
    		if sig, ok := check.typ(e.Type).(*Signature); ok {
    			// Set the Scope's extent to the complete "func (...) {...}"
    			// so that Scope.Innermost works correctly.
    			sig.scope.pos = e.Pos()
    			sig.scope.end = syntax.EndPos(e)
    			if !check.conf.IgnoreFuncBodies && e.Body != nil {
    				// Anonymous functions are considered part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

    import org.apache.maven.execution.MavenExecutionResult;
    import org.apache.maven.execution.ProfileActivation;
    import org.apache.maven.execution.ProjectActivation;
    import org.apache.maven.execution.scope.internal.MojoExecutionScope;
    import org.apache.maven.execution.scope.internal.MojoExecutionScopeModule;
    import org.apache.maven.extension.internal.CoreExports;
    import org.apache.maven.extension.internal.CoreExtensionEntry;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		ResourceVersionMatch: options.ResourceVersionMatch,
    		Predicate:            p,
    		Recursive:            true,
    	}
    
    	// if we're not already namespace-scoped, see if the field selector narrows the scope of the watch
    	if requestNamespace, _ := genericapirequest.NamespaceFrom(ctx); len(requestNamespace) == 0 {
    		if selectorNamespace, ok := p.MatchesSingleNamespace(); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	if opts.requireImmutableNames {
    		// these effect the storage and cannot be changed therefore
    		allErrs = append(allErrs, genericvalidation.ValidateImmutableField(spec.Scope, oldSpec.Scope, fldPath.Child("scope"))...)
    		allErrs = append(allErrs, genericvalidation.ValidateImmutableField(spec.Names.Kind, oldSpec.Names.Kind, fldPath.Child("names", "kind"))...)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    		check.overflow(x, e.Pos())
    
    	case *ast.FuncLit:
    		if sig, ok := check.typ(e.Type).(*Signature); ok {
    			// Set the Scope's extent to the complete "func (...) {...}"
    			// so that Scope.Innermost works correctly.
    			sig.scope.pos = e.Pos()
    			sig.scope.end = e.End()
    			if !check.conf.IgnoreFuncBodies && e.Body != nil {
    				// Anonymous functions are considered part of the
    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. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		}
    		pod.ResourceVersion = ""
    		expectNoDiff(t, "bookmark event should contain an object with no fields set other than resourceVersion", &example.Pod{}, pod)
    	})
    }
    
    // It tests watches of cluster-scoped resources.
    func RunTestClusterScopedWatch(ctx context.Context, t *testing.T, store storage.Interface) {
    	tests := []struct {
    		name string
    		// For watch request, the name of object is specified with field selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								},
    							},
    						},
    					},
    				},
    			}},
    			Names: apiextensionsv1.CustomResourceDefinitionNames{
    				Plural:   resource,
    				Kind:     kind,
    				ListKind: kind + "List",
    			},
    			Scope: apiextensionsv1.NamespaceScoped,
    		},
    	}
    
    	_, err = fixtures.CreateNewV1CustomResourceDefinition(myCRD, apiExtensionClient, dynamicClient)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, c := range cases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    				// to the variable declared in the initial SimpleStmt.
    				// Introduce extra scope to avoid redeclaration errors:
    				//
    				//	switch t := 0; t := x.(T) { ... }
    				//
    				// (this code is not valid Go because the first t
    				// cannot be accessed and thus is never used, the extra
    				// scope is needed for the correct error message).
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // Namespace defines the space within which each name must be unique. An empty namespace is
      // equivalent to the "default" namespace, but "default" is the canonical representation.
      // Not all objects are required to be scoped to a namespace - the value of this field for
      // those objects will be empty.
      //
      // Must be a DNS_LABEL.
      // Cannot be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top