Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,045 for creading (0.13 sec)

  1. pkg/volume/flexvolume/probe.go

    	}
    	if op == volume.ProbeAddOrUpdate {
    		plugin, pluginErr := prober.factory.NewFlexVolumePlugin(prober.pluginDir, driverDirName, prober.runner)
    		if pluginErr != nil {
    			pluginErr = fmt.Errorf(
    				"error creating Flexvolume plugin from directory %s, skipping. Error: %s",
    				driverDirName, pluginErr)
    			return probeEvent, pluginErr
    		}
    		probeEvent.Plugin = plugin
    		probeEvent.PluginName = plugin.GetPluginName()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. cluster/get-kube.sh

            ./cluster/get-kube-binaries.sh
        fi
      )
    }
    
    function create_cluster {
      if [[ -n "${KUBERNETES_SKIP_CREATE_CLUSTER-}" ]]; then
        exit 0
      fi
      echo "Creating a kubernetes on ${KUBERNETES_PROVIDER:-gce}..."
      (
        cd kubernetes
        ./cluster/kube-up.sh
        echo "Kubernetes binaries at ${PWD}/cluster/"
        if [[ ":$PATH:" != *":${PWD}/cluster:"* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/debug/dwarf/type_test.go

    			r.SkipChildren()
    		}
    	}
    
    	for k := range testcases {
    		if !seen[k] {
    			t.Errorf("missing %s", k)
    		}
    	}
    }
    
    func TestTypedefCycle(t *testing.T) {
    	// See issue #13039: reading a typedef cycle starting from a
    	// different place than the size needed to be computed from
    	// used to crash.
    	//
    	// cycle.elf built with GCC 4.8.4:
    	//    gcc -g -c -o cycle.elf cycle.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

        }
        auto begin = data.begin();
        if (offset > pos) {
          // The block begins before the slice we're reading.
          begin += offset - pos;
        }
        auto end = data.end();
        if (pos + data.size() > offset + n) {
          // The block extends past the end of the slice we're reading.
          end -= (pos + data.size()) - (offset + n);
        }
        if (begin < end) {
          size_t bytes_to_copy = end - begin;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_test.go

    // ParseTestData.
    type recordingConn struct {
    	net.Conn
    	sync.Mutex
    	flows   [][]byte
    	reading bool
    }
    
    func (r *recordingConn) Read(b []byte) (n int, err error) {
    	if n, err = r.Conn.Read(b); n == 0 {
    		return
    	}
    	b = b[:n]
    
    	r.Lock()
    	defer r.Unlock()
    
    	if l := len(r.flows); l == 0 || !r.reading {
    		buf := make([]byte, len(b))
    		copy(buf, b)
    		r.flows = append(r.flows, buf)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/ReaderInputStream.java

            } else {
              result = encoder.encode(charBuffer, byteBuffer, endOfInput);
            }
    
            if (result.isOverflow()) {
              // Not enough room in output buffer--drain it, creating a bigger buffer if necessary.
              startDraining(true);
              continue DRAINING;
            } else if (result.isUnderflow()) {
              // If encoder underflows, it means either:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/ReaderInputStream.java

            } else {
              result = encoder.encode(charBuffer, byteBuffer, endOfInput);
            }
    
            if (result.isOverflow()) {
              // Not enough room in output buffer--drain it, creating a bigger buffer if necessary.
              startDraining(true);
              continue DRAINING;
            } else if (result.isUnderflow()) {
              // If encoder underflows, it means either:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/testing/zz_generated.deepcopy.go

    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EmbeddedTest.
    func (in *EmbeddedTest) DeepCopy() *EmbeddedTest {
    	if in == nil {
    		return nil
    	}
    	out := new(EmbeddedTest)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *EmbeddedTest) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  9. tests/integration/pilot/multicluster_test.go

    			remote := t.Clusters().Exclude(primary)[0]
    
    			var (
    				ns  = i.Settings().SystemNamespace
    				sa  = "istio-reader-no-perms"
    				pod = "istiod-bad-secrets-test"
    			)
    			t.Logf("creating service account %s/%s", ns, sa)
    			if _, err := remote.Kube().CoreV1().ServiceAccounts(ns).Create(context.TODO(), &corev1.ServiceAccount{
    				ObjectMeta: metav1.ObjectMeta{Name: sa},
    			}, metav1.CreateOptions{}); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Spec describes the desired attributes of a resource that then needs
      // to be allocated. It can only be set once when creating the
      // ResourceClaim.
      optional ResourceClaimSpec spec = 2;
    
      // Status describes whether the resource is available and with which
      // attributes.
      // +optional
      optional ResourceClaimStatus status = 3;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top