Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,021 for happen (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/call_graph_util.cc

        auto sym = mlir::dyn_cast<SymbolRefAttr>(attr.getValue());
        if (!sym) continue;
        auto callee = symtab.lookup<func::FuncOp>(sym.getRootReference());
        if (!callee) {
          // This is not expected to happen in practice.
          return op->emitError()
                 << "Cannot find function " << sym.getRootReference();
        }
        callees.push_back(callee);
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kube/kclient/client.go

    	// are registered (in n.registeredHandlers); this can cause the dynamic filtering to miss events
    	reg, err := n.informer.AddEventHandler(fh)
    	if err != nil {
    		// Should only happen if its already stopped. We should exit early.
    		return
    	}
    	n.registeredHandlers = append(n.registeredHandlers, handlerRegistration{registration: reg, handler: h})
    }
    
    func (n *informerClient[T]) HasSynced() bool {
    	if !n.informer.HasSynced() {
    		return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	return ok && (major > 4 || major == 4 && minor >= 11)
    }
    
    func doinit() {
    	if err := readHWCAP(); err != nil {
    		// We failed to read /proc/self/auxv. This can happen if the binary has
    		// been given extra capabilities(7) with /bin/setcap.
    		//
    		// When this happens, we have two options. If the Linux kernel is new
    		// enough (4.11+), we can read the arm64 registers directly which'll
    		// trap into the kernel and then return back to userspace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// trying different nodes. This should not happen when it has
    	// full knowledge about resource availability (=
    	// PodSchedulingContext.*.UnsuitableNodes is complete) but may happen
    	// when it doesn't (= PodSchedulingContext.*.UnsuitableNodes had to be
    	// truncated).
    	//
    	// Truncation only happens for very large clusters and then may slow
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top