Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 166 for IMMEDIATE (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        checkNotNull(executor, "Executor was null.");
        // Checking isDone and listeners != TOMBSTONE may seem redundant, but our contract for
        // addListener says that listeners execute 'immediate' if the future isDone(). However, our
        // protocol for completing a future is to assign the value field (which sets isDone to true) and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        checkNotNull(executor, "Executor was null.");
        // Checking isDone and listeners != TOMBSTONE may seem redundant, but our contract for
        // addListener says that listeners execute 'immediate' if the future isDone(). However, our
        // protocol for completing a future is to assign the value field (which sets isDone to true) and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. pkg/apis/storage/validation/validation_test.go

    	shouldSucceed bool
    }
    
    func TestValidateVolumeBindingMode(t *testing.T) {
    	cases := map[string]bindingTest{
    		"no mode": {
    			class:         makeClass(nil, nil),
    			shouldSucceed: false,
    		},
    		"immediate mode": {
    			class:         makeClass(&immediateMode1, nil),
    			shouldSucceed: true,
    		},
    		"waiting mode": {
    			class:         makeClass(&waitingMode, nil),
    			shouldSucceed: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/runtime/asm_arm64.s

    	MOVD	$0, R0
    	MOVD	R0, (R0)	// boom
    	UNDEF
    
    DATA	runtime·mainPC+0(SB)/8,$runtime·main<ABIInternal>(SB)
    GLOBL	runtime·mainPC(SB),RODATA,$8
    
    // Windows ARM64 needs an immediate 0xf000 argument.
    // See go.dev/issues/53837.
    #define BREAK	\
    #ifdef GOOS_windows	\
    	BRK	$0xf000 	\
    #else 				\
    	BRK 			\
    #endif 				\
    
    
    TEXT runtime·breakpoint(SB),NOSPLIT|NOFRAME,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    }
    
    // makeSeq creates a new seqCounter.
    func makeSeq(gen, seq uint64) seqCounter {
    	return seqCounter{gen: gen, seq: seq}
    }
    
    // succeeds returns true if a is the immediate successor of b.
    func (a seqCounter) succeeds(b seqCounter) bool {
    	return a.gen == b.gen && a.seq == b.seq+1
    }
    
    // String returns a debug string representation of the seqCounter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            where:
            scheduled | dependency
            true      | 'project(":lib")'
            false     | '"test:a:1.3"'
            type = scheduled ? 'scheduled' : 'immediate'
        }
    
        def "transformation attribute cycles are permitted"() {
            mavenRepo.module("test", "a", "1.0").publish()
    
            buildFile << """
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm.s

    	TST	$0xffffffad, R4     // TST $4294967213, R4       // 52b0e0e30b0014e1
    	TEQ	$0xffffffae, R5     // TEQ $4294967214, R5       // 51b0e0e30b0035e1
    
    // immediate decomposition
    	ADD	$0xff0000ff, R0, R1 // ADD $4278190335, R0, R1 // ff1080e2ff1481e2
    	EOR	$0xff0000ff, R0, R1 // EOR $4278190335, R0, R1 // ff1020e2ff1421e2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  8. cmd/erasure-object.go

    		index := index
    		g.Go(func() error {
    			if disks[index] == nil {
    				return nil
    			}
    			return disks[index].Delete(ctx, bucket, prefix, DeleteOptions{
    				Recursive: true,
    				Immediate: true,
    			})
    		}, index)
    	}
    
    	// return errors if any during deletion
    	return reduceWriteQuorumErrs(ctx, g.Wait(), objectOpIgnoredErrs, writeQuorum)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64.s

    	TST	R1>>22, R2                          // 5f5841ea
    	TST	R1<<33, R2                          // 5f8401ea
    	TST	$0x22220000, R3                     // TST $572653568, R3           // 5b44a4d27f001bea
    
    // move an immediate to a Rn.
    	MOVD	$0x3fffffffc000, R0           // MOVD	$70368744161280, R0         // e07f72b2
    	MOVW	$1000000, R4                  // 04488852e401a072
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    		// Delay the Job sync when no generation change to batch Job status updates,
    		// typically triggered by pod events.
    		jm.enqueueSyncJobBatched(logger, curJob)
    	} else {
    		// Trigger immediate sync when spec is changed.
    		jm.enqueueSyncJobImmediately(logger, curJob)
    	}
    
    	// The job shouldn't be marked as finished until all pod finalizers are removed.
    	// This is a backup operation in this case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top