Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 320 for read1 (0.21 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/counter/countertest/countertest.go

    	counter.Open()
    	opened = true
    }
    
    // ReadCounter reads the given counter.
    func ReadCounter(c *counter.Counter) (count uint64, _ error) {
    	return ic.Read(c)
    }
    
    // ReadStackCounter reads the given StackCounter.
    func ReadStackCounter(c *counter.StackCounter) (stackCounts map[string]uint64, _ error) {
    	return ic.ReadStack(c)
    }
    
    // ReadFile reads the counters and stack counters from the given file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Before accessing the cacher's cache, wait for the ready to be ok.
    	// This is necessary to prevent users from accessing structures that are
    	// uninitialized or are being repopulated right now.
    	// ready needs to be set to false when the cacher is paused or stopped.
    	// ready needs to be set to true when the cacher is ready to use after
    	// initialization.
    	ready *ready
    
    	// Underlying storage.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/os/dir.go

    //
    // If n <= 0, Readdir returns all the FileInfo from the directory in
    // a single slice. In this case, if Readdir succeeds (reads all
    // the way to the end of the directory), it returns the slice and a
    // nil error. If it encounters an error before the end of the
    // directory, Readdir returns the FileInfo read until that point
    // and a non-nil error.
    //
    // Most clients are better served by the more efficient ReadDir method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. cluster/gce/windows/smoke-test.sh

        -o jsonpath='{.items[*].status.conditions[?(@.type=="Ready")].status}')
      for status in $statuses; do
        if [[ $status == "False" ]]; then
          echo "ERROR: some Windows node has status != Ready"
          echo "kubectl get nodes -l kubernetes.io/os=windows"
          ${kubectl} get nodes -l kubernetes.io/os=windows
          exit 1
        fi
      done
      echo "Verified that all Windows nodes have status Ready"
    }
    
    function untaint_windows_nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/io/ioutil/ioutil.go

    package ioutil
    
    import (
    	"io"
    	"io/fs"
    	"os"
    	"slices"
    	"strings"
    )
    
    // ReadAll reads from r until an error or EOF and returns the data it read.
    // A successful call returns err == nil, not err == EOF. Because ReadAll is
    // defined to read from src until EOF, it does not treat an EOF from Read
    // as an error to be reported.
    //
    // Deprecated: As of Go 1.16, this function simply calls [io.ReadAll].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyHost.java

    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public interface PropertyHost {
        PropertyHost NO_OP = producer -> null;
    
        /**
         * Returns null if the host allows reads of its state, or a string that explains why reads are not allowed.
         */
        @Nullable
        String beforeRead(@Nullable ModelObject producer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"minReadySeconds":      "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. pkg/kube/kclient/client_test.go

    			return len(wasm.List("", klabels.Everything()))
    		}, 1)
    		tracker.WaitOrdered("add/name")
    	})
    	t.Run("CRD fully ready", func(t *testing.T) {
    		stop := test.NewStop(t)
    		c := kube.NewFakeClient()
    
    		// Only CRD is ready to go by the time we start informers
    		clienttest.MakeCRD(t, c, gvr.WasmPlugin)
    		c.RunAndWait(stop)
    
    		// Now that CRD is synced, we create the client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    						{Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
    						{Ready: true, RestartCount: 3},
    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test5", "1/2", "podReason", "6", "<unknown>"}}},
    		},
    		{
    			// Test pod has 2 containers, one is running and the other is completed, w/o ready condition
    			api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

    import org.gradle.internal.serialize.codecs.core.ClosureCodec
    
    class ConfigurationCacheGroovyClosureIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "from-cache build fails when task action closure reads a project property"() {
            given:
            buildFile << """
                tasks.register("some") {
                    doFirst {
                        println(name) // task property is ok
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top