Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 852 for haninge (0.2 sec)

  1. src/crypto/internal/boring/fipstls/stub.s

    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    // runtime_arg0 is declared in tls.go without a body.
    // It's provided by package runtime,
    // but the go command doesn't know that.
    // Having this assembly file keeps the go command
    // from complaining about the missing body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 457 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/testdata/exe/exe.go

    package main
    
    import (
    	"os"
    	"reflect"
    	"runtime"
    
    	"testshared/depBase"
    )
    
    // Having a function declared in the main package triggered
    // golang.org/issue/18250
    func DeclaredInMain() {
    }
    
    type C struct {
    }
    
    func F() *C {
    	return nil
    }
    
    var slicePtr interface{} = &[]int{}
    
    func main() {
    	defer depBase.ImplementedInAsm()
    	// This code below causes various go.itab.* symbols to be generated in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 906 bytes
    - Viewed (0)
  3. releasenotes/notes/move-istio_cni-to-pilot-values.yaml

       will be used. Instead of values.istio_cni the enablement fields will be in
       values.pilot.cni as istiod is the affected component.
       That is clearer than having values.cni for install config and values.istio_cni
       for enablement in istiod. The old values.istio_cni fields will still be supported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 510 bytes
    - Viewed (0)
  4. architecture/standards/README.md

    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 06:30:44 UTC 2024
    - 546 bytes
    - Viewed (0)
  5. pkg/keepalive/options.go

    // (as implied by the options' name...)
    type Options struct {
    	// After a duration of this time if the server/client doesn't see any activity it pings the peer to see if the transport is still alive.
    	Time time.Duration
    	// After having pinged for keepalive check, the server waits for a duration of Timeout and if no activity is seen even after that
    	// the connection is closed.
    	Timeout time.Duration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.transform;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a transform operation having finished its execution.
     *
     * @since 5.1
     */
    public interface TransformFinishEvent extends TransformProgressEvent, FinishEvent {
        @Override
        TransformOperationResult getResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 961 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/work/WorkItemStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.work;
    
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that informs about a work item having started its execution.
     *
     * @since 5.1
     */
    public interface WorkItemStartEvent extends WorkItemProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 884 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/ProjectConfigurationStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.configuration;
    
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that informs about a project configuration operation having started its execution.
     *
     * @since 5.1
     */
    public interface ProjectConfigurationStartEvent extends ProjectConfigurationProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 939 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/TaskStartEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.task;
    
    import org.gradle.tooling.events.StartEvent;
    
    /**
     * An event that informs about a task having started its execution.
     *
     * @since 2.5
     */
    public interface TaskStartEvent extends TaskProgressEvent, StartEvent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 871 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/configuration/ProjectConfigurationFinishEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.configuration;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a project configuration operation having finished its execution.
     *
     * @since 5.1
     */
    public interface ProjectConfigurationFinishEvent extends ProjectConfigurationProgressEvent, FinishEvent {
        @Override
        ProjectConfigurationOperationResult getResult();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1010 bytes
    - Viewed (0)
Back to top