Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for bin2 (0.1 sec)

  1. cluster/gce/gci/configure-helper.sh

      safe-bind-mount "${mountpoint}" "${bindpoint}"
    }
    
    # Bind mounts device at mountpoint to bindpoint
    function safe-bind-mount(){
      local mountpoint="${1}"
      local bindpoint="${2}"
    
      # Mount device to the mountpoint
      mkdir -p "${bindpoint}"
      echo "Binding '${mountpoint}' at '${bindpoint}'"
      mount --bind "${mountpoint}" "${bindpoint}"
      chmod a+w "${bindpoint}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    }
    
    func validateServerBind(port *networking.Port, bind string) (errs error) {
    	if strings.HasPrefix(bind, UnixAddressPrefix) {
    		errs = appendErrors(errs, ValidateUnixAddress(strings.TrimPrefix(bind, UnixAddressPrefix)))
    		if port != nil && port.Number != 0 {
    			errs = appendErrors(errs, fmt.Errorf("port number must be 0 for unix domain socket: %v", port))
    		}
    	} else if len(bind) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //
    // The bin directory holds compiled commands.
    // Each command is named for its source directory, but only
    // the final element, not the entire path. That is, the
    // command with source in DIR/src/foo/quux is installed into
    // DIR/bin/quux, not DIR/bin/foo/quux. The "foo/" prefix is stripped
    // so that you can add DIR/bin to your PATH to get at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        # Keep the values of --image-credential-provider-config and --image-credential-provider-bin-dir
        # in sync with value of auth_config_file and auth_provider_dir set in install-auth-provider-gcp function
        # in gci/configure.sh.
        flags+="  --image-credential-provider-config=${AUTH_PROVIDER_GCP_LINUX_CONF_FILE}"
        flags+="  --image-credential-provider-bin-dir=${AUTH_PROVIDER_GCP_LINUX_BIN_DIR}"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    		r := newReader()
    		err := localDrive.CreateFile(ctx, "", minioMetaBucket, pathJoin(replicationMRFDir, globalLocalNodeNameHex+".bin"), -1, r)
    		r.Close()
    		if err == nil {
    			break
    		}
    	}
    }
    
    // save mrf entries to nodenamehex.bin
    func (p *ReplicationPool) saveMRFEntries(ctx context.Context, entries map[string]MRFReplicateEntry) {
    	if !p.initialized() {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	if runtime.GOOS == "windows" {
    		// Windows containers doesn't support mount propagation, use private for it.
    		// Refer https://docs.docker.com/storage/bind-mounts/#configure-bind-propagation.
    		return runtimeapi.MountPropagation_PROPAGATION_PRIVATE, nil
    	}
    
    	switch {
    	case mountMode == nil:
    		// PRIVATE is the default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	ListenAndServePodResources()
    	Run(<-chan kubetypes.PodUpdate)
    	RunOnce(<-chan kubetypes.PodUpdate) ([]RunPodResult, error)
    }
    
    // Dependencies is a bin for things we might consider "injected dependencies" -- objects constructed
    // at runtime that are necessary for running the Kubelet. This is a temporary solution for grouping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Data: map[string]string{
    					"foo": "bar",
    				},
    				BinaryData: map[string][]byte{
    					"bin": []byte("binary data"),
    				},
    			},
    			// Columns: Name, (Num) Data, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"configmap3", int64(2), "0s"}}},
    		},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top