Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 675 for happens (0.14 sec)

  1. pkg/controller/deployment/deployment_controller_test.go

    		p1.Name, p2.Name = p1.Name+fmt.Sprintf("-%d", i), p2.Name+fmt.Sprintf("-%d", i)
    		pods = append(pods, p1, p2)
    		objects = append(objects, p1, p2)
    	}
    
    	f.dLister = append(f.dLister, d)
    	f.rsLister = append(f.rsLister, rs1, rs2)
    	f.podLister = append(f.podLister, pods...)
    	f.objects = append(f.objects, d, rs1, rs2)
    	f.objects = append(f.objects, objects...)
    
    	// Start the fixture.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            }
        }
    
        def "problem is received when a single-file compilation failure happens"() {
            given:
            possibleFileLocations.put(writeJavaCausingTwoCompilationErrors("Foo").absolutePath, 2)
    
            when:
            fails("compileJava")
    
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    		// we allow removing all client ca bundles because the server is still secure when this happens. it just means
    		// that there isn't a hint to clients about which client-cert to used.  this happens when there is no client-ca
    		// yet known for authentication, which can happen in aggregated apiservers and some kube-apiserver deployment modes.
    		newContent.clientCA = caBundleContent{caBundle: currClientCABundle}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/runtime/runtime.go

    	// The old FD will never be closed, but we are about to crash anyway.
    	//
    	// On the writeErrData thread, panicking.Add(1) happens-before
    	// crashFD.Load() [2].
    	//
    	// On this thread, swapping old FD for new in crashFD happens-before
    	// panicking.Load() > 0.
    	//
    	// Therefore, if panicking.Load() == 0 here (old FD will be closed), it
    	// is impossible for the writeErrData thread to observe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/race.go

    	return int(n)
    }
    
    // RaceAcquire/RaceRelease/RaceReleaseMerge establish happens-before relations
    // between goroutines. These inform the race detector about actual synchronization
    // that it can't see for some reason (e.g. synchronization within RaceDisable/RaceEnable
    // sections of code).
    // RaceAcquire establishes a happens-before relation with the preceding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        // If the class is accessible to the system ClassLoader (ClassLoader.getSystemClassLoader())
        // then FRQ does not bother to load Finalizer.class through a separate ClassLoader. That happens
        // in our test environment, which foils the purpose of this test, so we disable the logic for
        // our test by setting a static field. We are changing the field in the parallel version of FRQ
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/global-heal.go

    			PoolIndex: disks[0].PoolIndex,
    		}
    		for _, disk := range disks {
    			ss.Disks = append(ss.Disks, disk)
    			if disk.Healing {
    				ss.HealStatus = "Healing"
    				ss.HealPriority = "high"
    				status.HealDisks = append(status.HealDisks, disk.Endpoint)
    			}
    		}
    		sortDisks(ss.Disks)
    		status.Sets = append(status.Sets, ss)
    	}
    	sort.Slice(status.Sets, func(i, j int) bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/crypto/rsa/pss.go

    	// length in octets of the RSA modulus n." 🙄
    	//
    	// This is extremely annoying, as all other encrypt and decrypt inputs are
    	// always the exact same size as the modulus. Since it only happens for
    	// weird modulus sizes, fix it by padding inefficiently.
    	if emLen, k := len(em), priv.Size(); emLen < k {
    		emNew := make([]byte, k)
    		copy(emNew[k-emLen:], em)
    		em = emNew
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/xds/server.go

    	// NonceAcked is the last acked message.
    	NonceAcked string
    
    	// AlwaysRespond, if true, will ensure that even when a request would otherwise be treated as an
    	// ACK, it will be responded to. This typically happens when a proxy reconnects to another instance of
    	// Istiod. In that case, Envoy expects us to respond to EDS/RDS/SDS requests to finish warming of
    	// clusters/listeners.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "AtomicCompareAndSwap64", argLength: 4, typ: "(Bool,Mem)", hasSideEffects: true},    // if *arg0==arg1, then set *arg0=arg2.  Returns true if store happens and new memory.
    	{name: "AtomicCompareAndSwapRel32", argLength: 4, typ: "(Bool,Mem)", hasSideEffects: true}, // if *arg0==arg1, then set *arg0=arg2.  Lock release, reports whether store happens and new memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top