Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,421 for prepends (0.15 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. src/net/http/cookiejar/punycode.go

    	damp        int32 = 700
    	initialBias int32 = 72
    	initialN    int32 = 128
    	skew        int32 = 38
    	tmax        int32 = 26
    	tmin        int32 = 1
    )
    
    // encode encodes a string as specified in section 6.3 and prepends prefix to
    // the result.
    //
    // The "while h < length(input)" line in the specification becomes "for
    // remaining != 0" in the Go code, because len(s) in Go is in bytes, not runes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 10 23:42:56 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. 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)
  4. src/vendor/golang.org/x/net/idna/punycode.go

    		}
    		output = append(output, 0)
    		copy(output[i+1:], output[i:])
    		output[i] = n
    		i++
    	}
    	return string(output), nil
    }
    
    // encode encodes a string as specified in section 6.3 and prepends prefix to
    // the result.
    //
    // The "while h < length(input)" line in the specification becomes "for
    // remaining != 0" in the Go code, because len(s) in Go is in bytes, not runes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:36 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. 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)
  6. 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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top