Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,062 for delegated (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		if err != nil && s.RemoteKubeConfigFileOptional {
    			if err != rest.ErrNotInCluster {
    				klog.Warningf("failed to read in-cluster kubeconfig for delegated authorization: %v", err)
    			}
    			return nil, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("failed to get delegated authorization kubeconfig: %v", err)
    	}
    
    	// set high qps/burst limits since this will effectively limit API server responsiveness
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/projectProperties/kotlin/build.gradle.kts

    }
    
    // Accessing the value of a project property, null if absent
    println(findProperty("myProjectProp"))
    
    // Accessing the Map<String, Any?> of project properties
    println(properties["myProjectProp"])
    
    // Using Kotlin delegated properties on `project`
    val myProjectProp: String by project
    println(myProjectProp)
    // end::configuration[]
    
    abstract class PrintValue : DefaultTask() {
        @get:Input abstract val inputValue: Property<String>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 918 bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbol.kt

        FirDeclarationOrigin.Enhancement, FirDeclarationOrigin.RenamedForOverride -> javaOriginBasedOnSessionKind()
        FirDeclarationOrigin.IntersectionOverride -> KaSymbolOrigin.INTERSECTION_OVERRIDE
        FirDeclarationOrigin.Delegated -> KaSymbolOrigin.DELEGATED
        FirDeclarationOrigin.Synthetic.FakeHiddenInPreparationForNewJdk -> KaSymbolOrigin.LIBRARY
        is FirDeclarationOrigin.Synthetic -> {
            when {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      }
    
      // We assume all other TF operators are flex delegated.
      return op->getDialect()->getNamespace() == "tf";
    }
    
    // This is a variation of the algorithm from
    // llvm/llvm-project/mlir/lib/Transforms/Utils/TopologicalSortUtils.cpp.
    //
    // Takes a function object `partition` that maps operations to one of two types
    // (for the current use case, flex delegate or not.)
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    include::sample[dir="snippets/tutorial/projectProperties/groovy",files="build.gradle[tags=configuration]"]
    ====
    
    [.multi-language-text.lang-kotlin]
    The link:https://kotlinlang.org/docs/delegated-properties.html[Kotlin delegated properties] are part of the Gradle Kotlin DSL.
    You need to explicitly specify the type as `String`.
    If you need to branch depending on the presence of the property, you can also use `String?` and check for `null`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/bodies/KtRendererBodyMemberScopeProvider.kt

                    return symbol.getCombinedDeclaredMemberScope().getAllSymbols()
                        .filter { member ->
                            val origin = member.origin
                            origin != KaSymbolOrigin.DELEGATED &&
                                    origin != KaSymbolOrigin.SOURCE_MEMBER_GENERATED &&
                                    origin != KaSymbolOrigin.SUBSTITUTION_OVERRIDE &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/README.md

    # apiserver
    
    Generic library for building a Kubernetes aggregated API server.
    
    
    ## Purpose
    
    This library contains code to create Kubernetes aggregation server complete with delegated authentication and authorization,
    `kubectl` compatible discovery information, optional admission chain, and versioned types.  It's first consumers are
    `k8s.io/kubernetes`, `k8s.io/kube-aggregator`, and `github.com/kubernetes-incubator/service-catalog`.
    
    
    ## Compatibility
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/cache/internal/SplitFileContentCacheFactory.java

    import java.io.File;
    import java.io.IOException;
    
    /**
     * A {@link FileContentCacheFactory} that delegates to the global cache for files that are known to be immutable and shared between different builds.
     * All other requests are delegated to the build-local cache. Closing this factory will only close the local delegate, not the global one.
     */
    public class SplitFileContentCacheFactory implements FileContentCacheFactory, Closeable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 18 16:53:35 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	}
    	w.hijacked = true
    	klog.V(6).Infof("Hijack returning websocket tunneling net.Conn")
    	return w.conn, nil, nil
    }
    
    // Header is delegated to the stored "http.ResponseWriter".
    func (w *tunnelingResponseWriter) Header() http.Header {
    	return w.w.Header()
    }
    
    // Write is delegated to the stored "http.ResponseWriter".
    func (w *tunnelingResponseWriter) Write(p []byte) (int, error) {
    	w.mu.Lock()
    	defer w.mu.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/artifacts/TwoStageArtifactsCacheTest.groovy

            twoStageArtifactsCache.get(key)
    
            then:
            1 * writeCache.get(key) >> Stub(AbstractArtifactsCache.ModuleArtifactsCacheEntry)
            0 * readCache.get(key)
        }
    
        def "writes are delegated to the writable cache"() {
            def entry = Stub(AbstractArtifactsCache.ModuleArtifactsCacheEntry)
            when:
            twoStageArtifactsCache.store(key, entry)
    
            then:
            writeCache.store(key, entry)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top