Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,421 for prepends (0.15 sec)

  1. 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)
  2. 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)
  3. src/cmd/asm/internal/asm/parse.go

    		}
    	default:
    		p.errorf("register extension not supported on this architecture")
    	}
    }
    
    // qualifySymbol returns name as a package-qualified symbol name. If
    // name starts with a period, qualifySymbol prepends the package
    // prefix. Otherwise it returns name unchanged.
    func (p *Parser) qualifySymbol(name string) string {
    	if strings.HasPrefix(name, ".") {
    		name = p.pkgPrefix + name
    	}
    	return name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. cmd/object-api-utils.go

    	if s == "" {
    		return s
    	}
    	return strings.TrimSuffix(s, SlashSeparator) + SlashSeparator
    }
    
    // pathsJoinPrefix - like pathJoin retains trailing SlashSeparator
    // for all elements, prepends them with 'prefix' respectively.
    func pathsJoinPrefix(prefix string, elem ...string) (paths []string) {
    	paths = make([]string, len(elem))
    	for i, e := range elem {
    		paths[i] = pathJoin(prefix, e)
    	}
    	return paths
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // * We are more responsive to completion than timeouts. This is because parkNanos depends on
      //   system scheduling and as such we could either miss our deadline, or unpark() could be delayed
      //   so that it looks like we timed out even though we didn't. For comparison FutureTask respects
      //   completion preferably and AQS is non-deterministic (depends on where in the queue the waiter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      // * We are more responsive to completion than timeouts. This is because parkNanos depends on
      //   system scheduling and as such we could either miss our deadline, or unpark() could be delayed
      //   so that it looks like we timed out even though we didn't. For comparison FutureTask respects
      //   completion preferably and AQS is non-deterministic (depends on where in the queue the waiter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

        Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class);
        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
        assertEquals(1, prepender.times);
      }
    
      public void testConstructor_returning() throws Exception {
        Invokable<?, Prepender> delegate =
            Prepender.constructor(String.class, int.class).returning(Prepender.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/reflect/InvokableTest.java

        Invokable<?, Prepender> delegate = Prepender.constructor(String.class, int.class);
        Prepender prepender = delegate.invoke(null, "a", 1);
        assertEquals("a", prepender.prefix);
        assertEquals(1, prepender.times);
      }
    
      public void testConstructor_returning() throws Exception {
        Invokable<?, Prepender> delegate =
            Prepender.constructor(String.class, int.class).returning(Prepender.class);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    [[sec:xcode_lifecycle_tasks]]
    === Lifecycle Tasks
    
    `xcode` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `__projectName__XcodeWorkspace` and all `xcodeProject` tasks
    +
    Generates all Xcode configuration files.
    
    `cleanXcode` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    _Depends on_: all Xcode project and workspace file clean tasks
    +
    Removes all Xcode configuration files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/visual_studio_plugin.adoc

    === Lifecycle Tasks
    
    `visualStudio` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `__projectName__VisualStudioSolution` and all Visual Studio project file generation tasks
    +
    Generates all Visual Studio configuration files.
    
    `cleanVisualStudio` — link:{groovyDslPath}/org.gradle.api.tasks.Delete.html[Delete]::
    _Depends on_: all Visual Studio project and solution file clean tasks
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top