Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,036 for seem (0.07 sec)

  1. cluster/gce/windows/common.psm1

    # result into our powershell environment so we can make syscalls from this script.
    # We make syscalls directly, because whatever the powershell cmdlets do under the hood,
    # they can't seem to open the log files concurrently with writers.
    # See https://docs.microsoft.com/en-us/dotnet/framework/interop/marshaling-data-with-platform-invoke
    # for details on which unmanaged types map to managed types.
    $SyscallDefinitions = @'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  2. cluster/log-dump/log-dump.sh

            else
              run-in-docker-container "${node_name}" "kube-proxy" "cat /tmp/k8s-kube-proxy.cov" > "${dir}/kube-proxy.cov" || true
            fi
          else
            echo 'Coverage profiles seem to exist, but cannot be retrieved from inside containers.'
          fi
        fi
    
        echo 'Changing logfiles to be world-readable for download'
        log-dump-ssh "${node_name}" "sudo chmod -R a+r /var/log" || true
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/kernels/xla_ops.cc

        "/tensorflow/core/xla_launch_counter",
        "The number of times a XlaLaunch is called.", "device");
    
    // A closure describing how to run a compiled version of a TensorFlow function.
    //
    // It may seem unusual to stick the resource variable snapshots in this class.
    // This is necessary: we need to use the snapshots observed by the compiler as
    // the initial values for the resource variables (and cannot snapshot them again
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/cmds.go

    			// background.
    			//
    			// Nobody should be running 'echo' as a background command, but it's not worth
    			// defining yet another interface, and also doesn't seem worth shoehorning
    			// into a SimpleCommand the way we did with Wait.
    			return func(*State) (stdout, stderr string, err error) {
    				return out, "", nil
    			}, nil
    		})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/buildid.go

    		return id, exe, nil
    	}
    
    	// Invoke the driver with -### to see the subcommands and the
    	// version strings. Use -x to set the language. Pretend to
    	// compile an empty file on standard input.
    	cmdline := str.StringList(cfg.BuildToolexec, name, "-###", "-x", language, "-c", "-")
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    	// Force untranslated output so that we see the string "version".
    	cmd.Env = append(os.Environ(), "LC_ALL=C")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/match.go

    //   Script:  Exact, MaxExact [see Note 3], Low, No
    //   Region:  Exact, MaxExact, High
    //   Variant: Exact, High
    //   Private: Exact, No
    //
    // Any result with a confidence level of Low or higher is deemed a possible match.
    // Once a desired tag matches any of the supported tags with a level of MaxExact
    // or higher, the next desired tag is not considered (see Step 2.b).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    	// from here are the majority of load on apiserver and etcd.
    	// To reduce the load on control-plane, we are serving GET operations from
    	// local lister (the data might be slightly delayed but it doesn't
    	// seem to cause more conflict - the delays are pretty small).
    	// If it result in a conflict, all retries are served directly from etcd.
    	var originalNode *v1.Node
    	var err error
    
    	if tryNumber == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    // has not been passed through gofmt.
    // See issues #27530 and #30746.
    // Tests are TestHtmlUnformatted and TestLineDup.
    // We use a map to avoid duplicates.
    
    // pos2 is a pair of token.Position values, used as a map key type.
    type pos2 struct {
    	p1, p2 token.Position
    }
    
    // seenPos2 tracks whether we have seen a token.Position pair.
    var seenPos2 = make(map[pos2]bool)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/os/signal/signal_test.go

    		// instead need a test-skip and upstream bug filed against the Solaris
    		// kernel).
    		//
    		// See https://golang.org/issue/33174.
    		settleTime = 5 * time.Second
    	} else if runtime.GOOS == "linux" && strings.HasPrefix(runtime.GOARCH, "ppc64") {
    		// Older linux kernels seem to have some hiccups delivering the signal
    		// in a timely manner on ppc64 and ppc64le. When running on a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set.go

    		if err != nil {
    			return nil, err
    		}
    		for _, pod := range pods {
    			if otherRS, found := seen[pod.UID]; found {
    				logger.V(5).Info("Pod is owned by both", "pod", klog.KObj(pod), "kind", rsc.Kind, "replicaSets", klog.KObjSlice([]klog.KMetadata{otherRS, relatedRS}))
    				continue
    			}
    			seen[pod.UID] = relatedRS
    			relatedPods = append(relatedPods, pod)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top