Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for attaching (0.37 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. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

    // function, which might not exist in case of multi-signature graphs. In that
    // case, this pass will create a new main function, which calls signature
    // functions.
    //
    // An already existing @main function will be renamed by attaching a numeric
    // suffix like `@main_0` to avoid conflict with the newly created main function.
    class InsertMainFunctionPass
        : public PassWrapper<InsertMainFunctionPass, OperationPass<ModuleOp>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. 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)
  10. pkg/volume/csi/csi_block.go

    		nodeName := string(m.plugin.host.GetNodeName())
    		attachID := getAttachmentName(csiSource.VolumeHandle, csiSource.Driver, nodeName)
    		attachment, err = m.k8s.StorageV1().VolumeAttachments().Get(context.TODO(), attachID, meta.GetOptions{})
    		if err != nil {
    			return "", errors.New(log("blockMapper.SetupDevice failed to get volume attachment [id=%v]: %v", attachID, err))
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top