Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,062 for delegated (0.21 sec)

  1. tensorflow/compiler/mlir/lite/schema/schema.fbs

      STRIDED_SLICE = 45,
      BIDIRECTIONAL_SEQUENCE_RNN = 46,
      EXP = 47,
      TOPK_V2 = 48,
      SPLIT = 49,
      LOG_SOFTMAX = 50,
      // DELEGATE is a special op type for the operations which are delegated to
      // other backends.
      // WARNING: Experimental interface, subject to change
      DELEGATE = 51,
      BIDIRECTIONAL_SEQUENCE_LSTM = 52,
      CAST = 53,
      PRELU = 54,
      MAXIMUM = 55,
      ARG_MAX = 56,
      MINIMUM = 57,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        .collect(Collectors.toSet())
                );
            }
            if (incomingEdges.size() == 1) {
                // At the same time if the current node _comes from_ a delegated variant (available-at)
                // then we need to take the exclusion filter from the origin node instead
                NodeState from = incomingEdges.get(0).getFrom();
                if (from.getMetadata().isExternalVariant()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                            }
                            else -> null
                        }
                        is FirErrorNamedReference -> transformErrorReference(this, calleeReference)
                        // Unresolved delegated constructor call is untransformed and end up as an `FirSuperReference`
                        is FirSuperReference -> {
                            val delegatedConstructorCall = this as? FirDelegatedConstructorCall ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    * Stop counting soft-deleted pods for scaling purposes in HPA controller to avoid soft-deleted pods incorrectly affecting scale up replica count calculation. ([#67067](https://github.com/kubernetes/kubernetes/pull/67067), [@moonek](https://github.com/moonek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    // resource from its internal cache and updating its cache in the background
    // based on the underlying storage contents.
    // Cacher implements storage.Interface (although most of the calls are just
    // delegated to the underlying storage).
    type Cacher struct {
    	// HighWaterMarks for performance debugging.
    	// Important: Since HighWaterMark is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platforms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    bleEitherMatc<LHS> either(org.hamcrest.Matcher<? super LHS> matcher) { return org.hamcrest.core.CombinableMatcher.<LHS>either(matcher); } /** * Wraps an existing matcher, overriding its description with that specified. All other functions are * delegated to the decorated matcher, including its mismatch description. * <p/> * For example: * <pre>describedAs("a big decimal equal to %0", equalTo(myBigDecimal), myBigDecimal.toPlainString())</pre> * * @param description * the new description for the wrapped...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * property or method which your script uses is delegated through to the associated <code>Project</code> object.  This
     * means, that you can use any of the methods and properties on the <code>Project</code> interface directly in your script.
     * </p><p>For example:
     * <pre>
     * defaultTasks('some-task')  // Delegates to Project.defaultTasks()
     * reportsDir = file('reports') // Delegates to Project.file() and the Java Plugin
     * </pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. cluster/addons/metrics-server/auth-delegator.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: metrics-server:system:auth-delegator
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: system:auth-delegator
    subjects:
    - kind: ServiceAccount
      name: metrics-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 20:14:57 UTC 2017
    - 398 bytes
    - Viewed (0)
  9. cmd/admin-handlers-users_test.go

    	}
    
    	// 5. Check that user can be deleted and verify it.
    	err = s.adm.RemoveUser(ctx, accessKey)
    	if err != nil {
    		c.Fatalf("user could not be deleted: %v", err)
    	}
    	usersMap, err = s.adm.ListUsers(ctx)
    	if err != nil {
    		c.Fatalf("error listing: %v", err)
    	}
    	_, ok = usersMap[accessKey]
    	if ok {
    		c.Fatalf("user not deleted: %s", accessKey)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  10. releasenotes/notes/sidecar-vs-delegate.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 02:00:37 UTC 2020
    - 151 bytes
    - Viewed (0)
Back to top