Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,248 for prepends (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    // The Conn type allows callers to multiplex multiple read/write channels over
    // a single websocket.
    //
    // "channel.k8s.io"
    //
    // The Websocket RemoteCommand subprotocol "channel.k8s.io" prepends each binary message with a
    // byte indicating the channel number (zero indexed) the message was sent on. Messages in both
    // directions should prefix their messages with this channel byte. Used for remote execution,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/plugin/plugin.go

    	if err != nil {
    		return fmt.Errorf("validation failed for DRA plugin %s at endpoint %s: %+v", pluginName, endpoint, err)
    	}
    
    	return err
    }
    
    // log prepends log string with `kubernetes.io/dra`.
    func log(msg string, parts ...interface{}) string {
    	return fmt.Sprintf(fmt.Sprintf("%s: %s", DRAPluginName, msg), parts...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/RelativePath.java

            return new RelativePath(endsWithFile, this, segments);
        }
    
        /**
         * Prepends the given names to the start of this path.
         *
         * @param segments The names to prepend
         * @return The new path.
         */
        public RelativePath prepend(String... segments) {
            return new RelativePath(false, segments).append(this);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 05:20:08 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ObjectArrays.java

        System.arraycopy(second, 0, result, first.length, second.length);
        return result;
      }
    
      /**
       * Returns a new array that prepends {@code element} to {@code array}.
       *
       * @param element the element to prepend to the front of {@code array}
       * @param array the array of elements to append
       * @return an array whose size is one larger than {@code array}, with {@code element} occupying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 12 15:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_util.go

    	if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.CSI != nil {
    		return spec.ReadOnly, nil
    	}
    
    	return false, fmt.Errorf("CSIPersistentVolumeSource not defined in spec")
    }
    
    // log prepends log string with `kubernetes.io/csi`
    func log(msg string, parts ...interface{}) string {
    	return fmt.Sprintf(fmt.Sprintf("%s: %s", CSIPluginName, msg), parts...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ObjectArrays.java

        System.arraycopy(second, 0, result, first.length, second.length);
        return result;
      }
    
      /**
       * Returns a new array that prepends {@code element} to {@code array}.
       *
       * @param element the element to prepend to the front of {@code array}
       * @param array the array of elements to append
       * @return an array whose size is one larger than {@code array}, with {@code element} occupying
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 12 15:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    	tests := []struct {
    		columns  []metav1.TableColumnDefinition
    		rows     []metav1.TableRow
    		options  PrintOptions
    		expected string
    	}{
    		// Test a single row table "WithNamespace" option, prepends NAMESPACE column.
    		{
    			columns: []metav1.TableColumnDefinition{
    				{Name: "Name", Type: "string"},
    				{Name: "Ready", Type: "string"},
    				{Name: "Status", Type: "string"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

            // If some entries from this classpath are also in the prepended classpath, then the prepended ones win.
            // Existing transforms for these entries have to be discarded.
            // We can think of the prepended classpath as the TransformedClassPath without actual transforms,
            // and then just append this classpath to it to achieve the desired behavior.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	"k8s.io/apimachinery/pkg/util/remotecommand"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/klog/v2"
    )
    
    const WebSocketProtocolHeader = "Sec-Websocket-Protocol"
    
    // The Websocket subprotocol "channel.k8s.io" prepends each binary message with a byte indicating
    // the channel number (zero indexed) the message was sent on. Messages in both directions should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/math/big/natconv.go

    // utoa converts x to an ASCII representation in the given base;
    // base must be between 2 and MaxBase, inclusive.
    func (x nat) utoa(base int) []byte {
    	return x.itoa(false, base)
    }
    
    // itoa is like utoa but it prepends a '-' if neg && x != 0.
    func (x nat) itoa(neg bool, base int) []byte {
    	if base < 2 || base > MaxBase {
    		panic("invalid base")
    	}
    
    	// x == 0
    	if len(x) == 0 {
    		return []byte("0")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
Back to top