Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,897 for delegated (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/authentication/group/group_adder.go

    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    // GroupAdder adds groups to an authenticated user.Info
    type GroupAdder struct {
    	// Authenticator is delegated to make the authentication decision
    	Authenticator authenticator.Request
    	// Groups are additional groups to add to the user.Info from a successful authentication
    	Groups []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

                verify(clean).delete("things")
                verify(clean).delete("build")
            }
        }
    
        @Test
        fun `can create element within configuration block via delegated property`() {
    
            val tasks = mock<TaskContainer> {
                on { create("hello") } doReturn mock<Task>()
            }
    
            tasks {
                @Suppress("unused_variable")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/group/authenticated_group_adder.go

    	"k8s.io/apiserver/pkg/authentication/user"
    )
    
    // AuthenticatedGroupAdder adds system:authenticated group when appropriate
    type AuthenticatedGroupAdder struct {
    	// Authenticator is delegated to make the authentication decision
    	Authenticator authenticator.Request
    }
    
    // NewAuthenticatedGroupAdder wraps a request authenticator, and adds the system:authenticated group when appropriate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/compile/CodeFragmentCapturedValue.kt

        /** Represents a delegated local variable (`val local by...`). */
        public class LocalDelegate(
            name: Name,
            isMutated: Boolean,
            isCrossingInlineBounds: Boolean,
        ) : CodeFragmentCapturedValue(name.asString(), isMutated, isCrossingInlineBounds) {
            override val displayText: String
                get() = "$name\$delegate"
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Aug 08 17:26:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top