Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 101 for notifiers (0.32 sec)

  1. pkg/kube/krt/collection.go

    	// Stores a map of I -> secondary dependencies (added via Fetch)
    	objectDependencies map[Key[I]][]*dependency
    
    	// eventHandlers is a list of event handlers registered for the collection. On any changes, each will be notified.
    	eventHandlers *handlers[O]
    
    	transformation TransformationMulti[I, O]
    
    	// augmentation allows transforming an object into another for usage throughout the library. See WithObjectAugmentation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.started({ it.id == 2 && it.name == "ok" && it.className == ATestClass.name }, { it.parentId == 1 })
            1 * processor.completed(2, { it.resultType == null }) //wondering why result type is null? Failures are notified via failure() method
            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        def "executes a JUnit 4 test class with ignored test"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    #### Ingress
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

    //file:noinspection HttpUrlsUsage
    
    package org.gradle.buildinit.plugins
    
    import org.gradle.api.internal.DocumentationRegistry
    import org.gradle.buildinit.InsecureProtocolOption
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.TestResources
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_4x.md

        scheduling. In your debugger you will see new thread names and more use of daemon threads.
    
     *  Fix: Don't drop callbacks on unexpected exceptions. When an interceptor throws an unchecked
        exception the callback is now notified that the call was canceled. The exception is still sent
        to the uncaught exception handler for reporting and recovery.
    
     *  Fix: Un-deprecate `MockResponse.setHeaders()` and other setters. These were deprecated in OkHttp
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    )
    
    // GVK is short for group/version/kind, which can uniquely represent a particular API resource.
    type GVK string
    
    // Constants for GVKs.
    const (
    	// There are a couple of notes about how the scheduler notifies the events of Pods:
    	// - Add: add events could be triggered by either a newly created Pod or an existing Pod that is scheduled to a Node.
    	// - Delete: delete events could be triggered by:
    	//           - a Pod that is deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	// if the server starts shutting down during sleep duration then the transformers will correctly closed early because their lifetime is tied to the api-server drain notifier.
    	go func() {
    		time.Sleep(oldTransformTracker.kmsCloseGracePeriod)
    		oldTransformTracker.closeTransformers()
    	}()
    }
    
    var _ storagevalue.Transformer = &resourceTransformer{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	flushedGen    atomic.Uintptr // the last completed generation
    	headerWritten bool           // whether ReadTrace has emitted trace header
    
    	// doneSema is used to synchronize the reader and traceAdvance. Specifically,
    	// it notifies traceAdvance that the reader is done with a generation.
    	// Both semaphores are 0 by default (so, acquires block). traceAdvance
    	// attempts to acquire for gen%2 after flushing the last buffers for gen.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/parse.go

    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    					str := p.lex.Text()
    					if tok != scanner.Ident {
    						p.errorf("instruction suffix expected identifier, found %s", str)
    					}
    					cond = cond + "." + str
    					continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/internal/poll/fd_windows.go

    	if err := fd.readLock(); err != nil {
    		return err
    	}
    	defer fd.readUnlock()
    	for {
    		if f(uintptr(fd.Sysfd)) {
    			return nil
    		}
    
    		// Use a zero-byte read as a way to get notified when this
    		// socket is readable. h/t https://stackoverflow.com/a/42019668/332798
    		o := &fd.rop
    		o.InitBuf(nil)
    		if !fd.IsStream {
    			o.flags |= windows.MSG_PEEK
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top