Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for rfind (0.65 sec)

  1. pkg/kubelet/kubelet_pods.go

    		}
    		return 0, 0, err
    	}
    
    	execName := "getsubids"
    	cmd, err := exec.LookPath(execName)
    	if err != nil {
    		if os.IsNotExist(err) {
    			klog.V(2).InfoS("Could not find executable, default mappings will be used for the user namespaces", "executable", execName, "err", err)
    			return defaultFirstID, defaultLen, nil
    		}
    		return 0, 0, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      } else if (auto cst = dyn_cast<tfl::SparseQConstOp>(inst)) {
        attr = cst.getCompressedData();
      } else {
        return empty_buffer_;
      }
    
      if (can_be_deduplicated) {
        if (const_attribute_to_buffer_map_.find(attr) !=
            const_attribute_to_buffer_map_.end()) {
          index = const_attribute_to_buffer_map_[attr];
          return empty_buffer_;
        }
        const_attribute_to_buffer_map_[attr] = index;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    		t.Error("Unexpectedly cNonNil is equal to cNil1")
    	}
    }
    
    func TestMismatchedSignatureAlgorithm(t *testing.T) {
    	der, _ := pem.Decode([]byte(rsaPSSSelfSignedPEM))
    	if der == nil {
    		t.Fatal("Failed to find PEM block")
    	}
    
    	cert, err := ParseCertificate(der.Bytes)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err = cert.CheckSignature(ECDSAWithSHA256, nil, nil); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    // 1. There is an idle P, and
    // 2. There are no "spinning" worker threads.
    //
    // A worker thread is considered spinning if it is out of local work and did
    // not find work in the global run queue or netpoller; the spinning state is
    // denoted in m.spinning and in sched.nmspinning. Threads unparked this way are
    // also considered spinning; we don't do goroutine handoff so such threads are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // file containing up-to-date export information for the given package,
    // and the BuildID field to the build ID of the compiled package.
    //
    // The -find flag causes list to identify the named packages but not
    // resolve their dependencies: the Imports and Deps lists will be empty.
    // With the -find flag, the -deps, -test and -export commands cannot be
    // used.
    //
    // The -test flag causes list to report not only the named packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		kl.podManager.AddPod(pod)
    
    		pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(pod)
    		if wasMirror {
    			if pod == nil {
    				klog.V(2).InfoS("Unable to find pod for mirror pod, skipping", "mirrorPod", klog.KObj(mirrorPod), "mirrorPodUID", mirrorPod.UID)
    				continue
    			}
    			kl.podWorkers.UpdatePod(UpdatePodOptions{
    				Pod:        pod,
    				MirrorPod:  mirrorPod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	//
    	// TODO(matloob): Perhaps make each of those the errors in the first group
    	// (including modload.ImportMissingError, ImportMissingSumError, and the
    	// corresponding "cannot find package %q in any of" GOPATH-mode error
    	// produced in build.(*Context).Import; modload.AmbiguousImportError,
    	// and modload.PackageNotInModuleError; and the malformed module path errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                }
            """
        }
    
        void isTransformed(String from, String to) {
            def dirs = allOutputDirs(from, to)
            if (dirs.size() == 0) {
                throw new AssertionError("Could not find $from -> $to in output: $output")
            }
            if (dirs.size() > 1) {
                throw new AssertionError("Found $from -> $to more than once in output: $output")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func QueryServiceDynamicInformation(service Handle, infoLevel uint32, dynamicInfo unsafe.Pointer) (err error) {
    	err = procQueryServiceDynamicInformation.Find()
    	if err != nil {
    		return
    	}
    	r1, _, e1 := syscall.Syscall(procQueryServiceDynamicInformation.Addr(), 3, uintptr(service), uintptr(infoLevel), uintptr(dynamicInfo))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	//
    	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's
    	// no equivalent bogus thing we can realistically send in HTTP/2,
    	// so we'll consistently panic instead and help people find their bugs
    	// early. (We can't return an error from WriteHeader even if we wanted to.)
    	if code < 100 || code > 999 {
    		panic(fmt.Sprintf("invalid WriteHeader code %v", code))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top