Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for attaching (0.25 sec)

  1. src/runtime/testdata/testwinlib/main.c

        }
        return EXCEPTION_CONTINUE_SEARCH;
    }
    
    void throwFromC()
    {
        DebugBreak();
    }
    int main()
    {
        // simulate a "lazily" attached debugger, by calling some go code before attaching the exception/continue handler
        Dummy();
        exceptionCount = 0;
        continueCount = 0;
        void *exceptionHandlerHandle = AddVectoredExceptionHandler(0, customExceptionHandlder);
        if (NULL == exceptionHandlerHandle)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/CacheableTransform.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attaching this annotation to a {@link TransformAction} type it indicates that the build cache should be used for artifact transforms of this type.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 02 13:10:28 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/reconciler/reconciler.go

    		// pod is unmounted from the first pod before being mounted to the new
    		// pod.
    		rc.unmountVolumes()
    	}
    
    	// Next we mount required volumes. This function could also trigger
    	// attach if kubelet is responsible for attaching volumes.
    	// If underlying PVC was resized while in-use then this function also handles volume
    	// resizing.
    	rc.mountOrAttachVolumes()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/work/DisableCachingByDefault.java

     *
     * Not all work benefits from caching: for example tasks that only copy content around on disk rarely do.
     * This annotation allows clearly stating that work does not benefit from caching.
     * It also allows attaching an explanation about why a certain work unit is not made cacheable.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 20 20:53:24 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/CompileClasspath.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying a Java compile classpath for a task. Attaching this annotation to a property means that changes that do not affect the API of the classes in classpath will be ignored. The following kinds of changes to the classpath will be ignored:</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 10:29:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  6. test/typeparam/absdiff3.go

    // run
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // absdiff example using a function argument rather than attaching an
    // Abs method to a structure containing base types.
    
    package main
    
    import (
    	"fmt"
    	"math"
    )
    
    type Numeric interface {
    	OrderedNumeric | Complex
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/migrate_client.go

    	}
    	klog.Infof("Lease with TTL: %v created", lease.TTL)
    
    	klog.Infof("Attaching lease to %d entries", len(objectsResp.Kvs))
    	for _, kv := range objectsResp.Kvs {
    		putResp, err := v3client.KV.Put(ctx, string(kv.Key), string(kv.Value), clientv3.WithLease(lease.ID), clientv3.WithPrevKV())
    		if err != nil {
    			klog.Errorf("Error while attaching lease to: %s", string(kv.Key))
    		}
    		if !bytes.Equal(putResp.PrevKv.Value, kv.Value) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency.go

    	fr, _ := ctx.Value(requestFilterRecordKey).(*requestFilterRecord)
    	return fr
    }
    
    // TrackStarted measures the timestamp the given handler has started execution
    // by attaching a handler to the chain.
    func TrackStarted(handler http.Handler, tp trace.TracerProvider, name string) http.Handler {
    	return trackStarted(handler, tp, name, clock.RealClock{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 04 01:19:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            debugClient.connect().dispose()
    
            then:
            handle.waitForFinish()
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
        /** To test attaching the debugger via a non-loopback network interface, we need to choose an IP address of such an interface. */
        private static final String nonLoopbackAddress() {
            println("Looking at network interfaces")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/nodes.go

    	}
    
    	// ElemList[0], ElemList[1], ...
    	ListExpr struct {
    		ElemList []Expr
    		expr
    	}
    
    	// [Len]Elem
    	ArrayType struct {
    		// TODO(gri) consider using Name{"..."} instead of nil (permits attaching of comments)
    		Len  Expr // nil means Len is ...
    		Elem Expr
    		expr
    	}
    
    	// []Elem
    	SliceType struct {
    		Elem Expr
    		expr
    	}
    
    	// ...Elem
    	DotsType struct {
    		Elem Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top