Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 118 for getPerm (0.16 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

            succeeds("build")
            file("build/libs/example.jar").exists()
        }
    
        def 'can configure an extension using DependencyCollector in declarative DSL that uses Kotlin properties for the getters'() {
            given: "a plugin that creates a custom extension using a DependencyCollector"
            file("build-logic/src/main/kotlin/com/example/restricted/DependenciesExtension.kt") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    		if err != nil {
    			klog.ErrorS(err, "Authorization error", "user", attrs.GetUser().GetName(), "verb", attrs.GetVerb(), "resource", attrs.GetResource(), "subresource", attrs.GetSubresource())
    			msg := fmt.Sprintf("Authorization error (user=%s, verb=%s, resource=%s, subresource=%s)", attrs.GetUser().GetName(), attrs.GetVerb(), attrs.GetResource(), attrs.GetSubresource())
    			resp.WriteErrorString(http.StatusInternalServerError, msg)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. tests/integration/security/file_mounted_certs/main_test.go

    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    	meshHolder mesh.Holder
    
    	// Primary cluster kube client
    	kubeClient kubernetes.Interface
    	// Primary cluster ID
    	clusterID cluster.ID
    
    	// remote cluster kubeClient getter
    	remoteKubeClientGetter RemoteKubeClientGetter
    }
    
    var _ security.Authenticator = &KubeJWTAuthenticator{}
    
    // NewKubeJWTAuthenticator creates a new kubeJWTAuthenticator.
    func NewKubeJWTAuthenticator(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_op_quant_spec.cc

        if (cur_spec.quantization_component() ==
            tensorflow::quantization::QuantizationComponentSpec::COMPONENT_WEIGHT)
          return cur_spec;
      }
      return std::nullopt;
    }
    
    // TODO(b/228928859): Improve the getter function to match attributes rather
    // than function name.
    std::unique_ptr<OpQuantSpec> GetTFOpQuantSpec(Operation* op) {
      auto spec = std::make_unique<OpQuantSpec>();
      if (auto call_op = dyn_cast<TF::PartitionedCallOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            if (jvmNameFromProperty != null) {
                return jvmNameFromProperty
            }
    
            val accessor = if (isSetter) property.setter else property.getter
            val jvmNameFromAccessor = accessor?.getJvmNameFromAnnotation(analysisSession.useSiteSession)
            if (jvmNameFromAccessor != null) {
                return jvmNameFromAccessor
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

        override val typeParameters: List<KaTypeParameterSymbol>
            get() = withValidityAssertion { firSymbol.createKtTypeParameters(builder) }
    
        override val getter: KaPropertyGetterSymbol?
            get() = withValidityAssertion {
                firSymbol.getterSymbol?.let { builder.callableBuilder.buildPropertyAccessorSymbol(it) } as? KaPropertyGetterSymbol
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/alias.go

    	res.orig = orig
    	res.tparams = orig.tparams
    	res.targs = newTypeList(targs)
    	return res
    }
    
    func (a *Alias) cleanup() {
    	// Ensure a.actual is set before types are published,
    	// so Unalias is a pure "getter", not a "setter".
    	actual := Unalias(a)
    
    	if actual == Typ[Invalid] {
    		// We don't set a.actual to Typ[Invalid] during type checking,
    		// as it may indicate that the RHS is not fully set up.
    		a.actual = actual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. cmd/server-main.go

    		}
    		if !globalEndpoints.HTTPS() && globalIsTLS {
    			logger.Fatal(config.ErrCertsAndHTTPEndpoints(nil), "Unable to start the server")
    		}
    	}
    
    	var getCert certs.GetCertificateFunc
    	if globalTLSCerts != nil {
    		getCert = globalTLSCerts.GetCertificate
    	}
    
    	// Check for updates in non-blocking manner.
    	go func() {
    		if !globalServerCtxt.Quiet && !globalInplaceUpdateDisabled {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    	t.Helper()
    	if len(actions) <= index {
    		t.Fatalf("Expected at least %d actions, got %d", index+1, len(actions))
    	}
    
    	action := actions[index]
    	if action.GetVerb() != verb {
    		t.Errorf("Expected action %d verb to be %s, got %s", index, verb, action.GetVerb())
    	}
    
    	if action.GetResource().Resource != resource {
    		t.Errorf("Expected action %d resource to be %s, got %s", index, resource, action.GetResource().Resource)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top