Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,575 for happen (0.41 sec)

  1. src/math/big/ratmarsh.go

    	i := x.b.abs.bytes(buf)
    	j := x.a.abs.bytes(buf[:i])
    	n := i - j
    	if int(uint32(n)) != n {
    		// this should never happen
    		return nil, errors.New("Rat.GobEncode: numerator too large")
    	}
    	byteorder.BePutUint32(buf[j-4:j], uint32(n))
    	j -= 1 + 4
    	b := ratGobVersion << 1 // make space for sign bit
    	if x.a.neg {
    		b |= 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/EffectiveClassPath.java

                    }
                }
            }
    
            // The file names passed to -cp are canonicalised by the JVM when it creates the system classloader, and so the file names are
            // lost if they happen to refer to links, for example, into the Gradle artifact cache. Try to reconstitute the file names
            // from the system classpath
            if (classLoader == ClassLoader.getSystemClassLoader()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/crypto/x509/oid.go

    		val |= int(v & 0x7F)
    
    		if v&0x80 == 0 {
    			if len(out) == 0 {
    				if val < 80 {
    					out = append(out, val/40)
    					out = append(out, val%40)
    				} else {
    					out = append(out, 2)
    					out = append(out, val-80)
    				}
    				val = 0
    				continue
    			}
    			out = append(out, val)
    			val = 0
    		}
    	}
    
    	return out, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. pkg/kube/util.go

    	if !ok {
    		// shouldn't happen
    		return obj, nil
    	}
    	// ManagedFields is large and we never use it
    	t.GetObjectMeta().SetManagedFields(nil)
    	// only container ports can be used
    	if pod := obj.(*corev1.Pod); pod != nil {
    		containers := []corev1.Container{}
    		for _, c := range pod.Spec.Containers {
    			if len(c.Ports) > 0 {
    				containers = append(containers, corev1.Container{
    					Ports: c.Ports,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/metadata/SwiftcMetadataProvider.java

            } catch (IOException e) {
                // Should not happen when reading from a StringReader
                throw new UncheckedIOException(e);
            }
        }
    
        private static class DefaultSwiftcMetadata implements SwiftcMetadata {
            private final String versionString;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DependencyArtifactDownloadProgressEventCrossVersionTest.groovy

            brokenDownloads.each {
                assert it.failed
                it.assertIsDownload(modules.projectC.pom.uri, 0)
            }
        }
    
        def "attaches parent to events for downloads that happen during project configuration"() {
            def modules = setupBuildWithArtifactDownloadDuringConfiguration()
    
            when:
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    }
    
    // CurrentCABundleContent provides ca bundle byte content
    func (c *ConfigMapCAController) CurrentCABundleContent() []byte {
    	uncastObj := c.caBundle.Load()
    	if uncastObj == nil {
    		return nil // this can happen if we've been unable load data from the apiserver for some reason
    	}
    
    	return c.caBundle.Load().(*caBundleAndVerifier).caBundle
    }
    
    // VerifyOptions provides verifyoptions compatible with authenticators
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/controller/storageversiongc/gc_controller.go

    		return
    	}
    
    	// Identity lease deletion and storageversion update don't happen too often. Start one
    	// worker for each of them.
    	// runLeaseWorker handles legit identity lease deletion, while runStorageVersionWorker
    	// handles storageversion creation/update with non-existing id. The latter should rarely
    	// happen. It's okay for the two workers to conflict on update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. 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)
  10. cmd/kube-proxy/app/server_linux.go

    	if config.Mode == proxyconfigapi.ProxyModeIPTables {
    		logger.Info("Using iptables Proxier")
    
    		if dualStack {
    			ipt, _ := getIPTables(s.PrimaryIPFamily)
    
    			// TODO this has side effects that should only happen when Run() is invoked.
    			proxier, err = iptables.NewDualStackProxier(
    				ctx,
    				ipt,
    				utilsysctl.New(),
    				exec.New(),
    				config.IPTables.SyncPeriod.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top