Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for extractJob (0.15 sec)

  1. platforms/jvm/normalization-java/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "API extraction for Java"
    
    errorprone {
        disabledChecks.addAll(
            "EmptyBlockTag", // 2 occurrences
            "NonApiType", // 1 occurrences
            "ProtectedMembersInFinalClass", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":hashing"))
        api(project(":files"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 824 bytes
    - Viewed (0)
  2. security/pkg/server/ca/authenticate/kubeauth/kube_jwt.go

    		return nil, fmt.Errorf("target JWT extraction error: %v", err)
    	}
    	clusterID := cluster.ID(req.Header.Get(clusterIDMeta))
    	return a.authenticate(targetJWT, clusterID)
    }
    
    func (a *KubeJWTAuthenticator) authenticateGrpc(ctx context.Context) (*security.Caller, error) {
    	targetJWT, err := security.ExtractBearerToken(ctx)
    	if err != nil {
    		return nil, fmt.Errorf("target JWT extraction error: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. security/pkg/server/ca/authenticate/oidc.go

    		if err != nil {
    			return nil, fmt.Errorf("ID token extraction error: %v", err)
    		}
    		return j.authenticate(authRequest.GrpcContext, bearerToken)
    	}
    	if authRequest.Request != nil {
    		bearerToken, err := security.ExtractRequestToken(authRequest.Request)
    		if err != nil {
    			return nil, fmt.Errorf("target JWT extraction error: %v", err)
    		}
    		return j.authenticate(authRequest.Request.Context(), bearerToken)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

            );
        }
    
        private <T> Set<T> getOrEmpty(TestFrameworkOptions options, Function<JUnitPlatformOptions, Set<T>> extractor) {
            return options instanceof JUnitPlatformOptions
                ? extractor.apply((JUnitPlatformOptions) options)
                : ImmutableSet.of();
        }
    
        private TestTaskForkOptions collectForkOptions(Test task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/PropertyExtractor.kt

            val nameSet = mutableSetOf<String>()
            val predicateWithNamesFiltered: (String) -> Boolean = { propertyNamePredicate(it) && it !in nameSet }
            extractors.forEach { extractor ->
                val properties = extractor.extractProperties(kClass, predicateWithNamesFiltered)
                addAll(properties)
                nameSet.addAll(properties.map { it.name })
            }
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/agent.go

    		UseExternalWorkloadSDS:      useExternalWorkloadSDSEnv,
    		MetadataDiscovery:           enableWDSEnv,
    		SDSFactory:                  sds,
    	}
    	extractXDSHeadersFromEnv(o)
    	return o
    }
    
    // Simplified extraction of gRPC headers from environment.
    // Unlike ISTIO_META, where we need JSON and advanced features - this is just for small string headers.
    func extractXDSHeadersFromEnv(o *istioagent.AgentOptions) {
    	envs := os.Environ()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    	}{
    		"No bearer token": {
    			metadata: metadata.MD{
    				"clusterid": []string{primaryCluster},
    				"authorization": []string{
    					"Basic callername",
    				},
    			},
    			expectedErrMsg: "target JWT extraction error: no bearer token exists in HTTP authorization header",
    		},
    		"token not authenticated": {
    			token: invlidToken,
    			metadata: metadata.MD{
    				"clusterid": []string{primaryCluster},
    				"authorization": []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top