Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for notifiers (2.61 sec)

  1. tensorflow/c/kernels.h

        TF_OpKernelContext* ctx, int i, TF_Buffer* serialized_resource_handle_proto,
        TF_Status* status);
    
    // Notifies the given OpKernelConstruction that kernel construction has failed.
    TF_CAPI_EXPORT extern void TF_OpKernelConstruction_Failure(
        TF_OpKernelConstruction* ctx, TF_Status* status);
    
    // Notifies the given OpKernelContext that the kernel's compute function has
    // failed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

    
    private
    val Class<*>.isKotlinVisible: Boolean
        get() = isPublic && !isLocalClass && !isAnonymousClass && !isSynthetic
    
    
    private
    val Class<*>.isPublic
        get() = Modifier.isPublic(modifiers)
    
    
    private
    class ProjectSchemaNamedDomainObjectSchema(
        private val objectName: String,
        private val objectPublicType: TypeOf<*>
    ) : NamedDomainObjectSchema {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                children.forEach {
                    when (val tokenType = it.tokenType) {
                        MODIFIER_LIST -> {
                            val modifiers = tree.children(it)
                            modifiers.forEach { modifier ->
                                when (modifier.tokenType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/certcontroller.go

    			continue
    		}
    		s.istiodCertBundleWatcher.SetAndNotify(keyPEM, certChain, s.istiodCertBundleWatcher.GetCABundle())
    	}
    }
    
    // updateRootCertAndGenKeyCert when CA certs is updated, it generates new dns certs and notifies keycertbundle about the changes
    func (s *Server) updateRootCertAndGenKeyCert() error {
    	log.Infof("update root cert and generate new dns certs")
    	caBundle := s.CA.GetCAKeyCertBundle().GetRootCertPem()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

                    { it.resultType == ResultType.FAILURE && it.exception.is(failure.rawFailure) && it.exceptions == [failure.rawFailure] },
                    _
            )
            0 * _
        }
    
        def "notifies output listener"() {
            given:
            def event = new DefaultTestOutputEvent(TestOutputEvent.Destination.StdOut, "hey!")
            def test = new DefaultTestDescriptor("testid", "DogTest", "shouldBarkAtStrangers");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  6. cmd/notification.go

    		reqInfo := (&logger.ReqInfo{}).AppendTags("peerAddress", nErr.Host.String())
    		if nErr.Err != nil {
    			peersLogOnceIf(logger.SetReqInfo(ctx, reqInfo), nErr.Err, nErr.Host.String())
    		}
    	}
    }
    
    // StopRebalance notifies all MinIO nodes to signal any ongoing rebalance
    // goroutine to stop.
    func (sys *NotificationSys) StopRebalance(ctx context.Context) {
    	objAPI := newObjectLayerFn()
    	if objAPI == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/RejectedLanguageFeaturesParsingTest.kt

                        )
                    )
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
        fun `rejects modifiers on vals`() {
            val code = """
                public val x: Int = 0
                private val x: Int""".trimIndent()
            val expected = """
            ErroneousStatement (
                MultipleFailures(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet.go

    	keyFile                   string
    	dynamicCertificateContent *dynamiccertificates.DynamicCertKeyPairContent
    	currentTLSCertificate     atomic.Pointer[tls.Certificate]
    }
    
    // Enqueue implements the functions to be notified when the serving cert content changes.
    func (m *kubeletServerCertificateDynamicFileManager) Enqueue() {
    	certContent, keyContent := m.dynamicCertificateContent.CurrentCertKeyContent()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

        @CheckReturnValue
        public static SnapshotHierarchy removeUnwatchableContentAfterBuildFinished(SnapshotHierarchy root, Invalidator invalidator) {
            SnapshotHierarchy newRoot = root;
            // We are not being notified about changes to content accessed via symlinks
            newRoot = removeIndirectlySymlinkedRoots(newRoot, invalidator);
            newRoot = removeDirectSymlinks(newRoot, invalidator);
            return newRoot;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/internal/concurrent/TaskFaker.kt

              nanos: Long,
            ) {
              taskRunner.assertThreadHoldsLock()
              check(waitingCoordinatorTask == null)
              if (nanos == 0L) return
    
              // Yield until notified, interrupted, or the duration elapses.
              val waitUntil = nanoTime + nanos
              val self = currentTask
              waitingCoordinatorTask = self
              waitingCoordinatorNotified = false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top