Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 375 for initiatives (0.16 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/CleanAcceptedApiChanges.groovy

    import org.gradle.api.tasks.TaskAction
    import org.gradle.work.DisableCachingByDefault
    
    /**
     * A task used for cleaning up all accepted API changes. The functionality is called whenever the release process initiates "branching".
     */
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class CleanAcceptedApiChanges extends DefaultTask {
    
        @PathSensitive(PathSensitivity.ABSOLUTE)
        @InputDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. pkg/kubelet/oom/oom_watcher_linux.go

    }
    
    var _ streamer = &oomparser.OomParser{}
    
    type realWatcher struct {
    	recorder    record.EventRecorder
    	oomStreamer streamer
    }
    
    var _ Watcher = &realWatcher{}
    
    // NewWatcher creates and initializes a OOMWatcher backed by Cadvisor as
    // the oom streamer.
    func NewWatcher(recorder record.EventRecorder) (Watcher, error) {
    	// for test purpose
    	_, ok := recorder.(*record.FakeRecorder)
    	if ok {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 23:17:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

    // quantization summary from a quantized `ModuleOp` and emit it in a human- and
    // machine-readable format.
    class QuantizationReport {
     public:
      QuantizationReport() = default;
    
      // Initializes `QuantizationReport` by collecting `QuantizationResults` from
      // `module_op`.
      explicit QuantizationReport(ModuleOp module_op);
    
      // Adds a `QuantizationResult` to the report.
      void AddQuantizationResult(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. plugin/pkg/admission/podtolerationrestriction/admission.go

    	}
    
    	obj := a.GetObject()
    	_, ok := obj.(*api.Pod)
    	if !ok {
    		klog.Errorf("expected pod but got %s", a.GetKind().Kind)
    		return true
    	}
    
    	return false
    }
    
    // NewPodTolerationsPlugin initializes a Plugin
    func NewPodTolerationsPlugin(pluginConfig *pluginapi.Configuration) *Plugin {
    	return &Plugin{
    		Handler:      admission.NewHandler(admission.Create, admission.Update),
    		pluginConfig: pluginConfig,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 29 20:07:59 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/BuildInitPlugin.java

            if (project.getParent() == null) {
                project.getTasks().register("init", InitBuild.class, initBuild -> {
                    initBuild.setGroup("Build Setup");
                    initBuild.setDescription("Initializes a new Gradle build.");
    
                    ProjectInternal projectInternal = (ProjectInternal) project;
    
                    ProjectInternal.DetachedResolver detachedResolver = projectInternal.newDetachedResolver();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:43:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

        def 'initialises when there is lock state'() {
            when:
            visitor.start(rootNode)
    
            then:
            1 * dependencyLockingProvider.loadLockState(lockId, _) >> lockState
            1 * lockState.mustValidateLockState() >> true
            1 * lockState.lockedDependencies >> emptySet()
            0 * _
        }
    
        def 'initialises when there is no lock state'() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. cluster/images/etcd/migrate/migrate.go

    		if err := copyFile(filepath.Join(opts.binDir, etcdctlVersioned), filepath.Join(opts.binDir, "etcdctl")); err != nil {
    			klog.Fatalf("Failed to copy %s: %v", etcdctlVersioned, err)
    		}
    	}
    }
    
    // migrate opens or initializes the etcd data directory, configures the migrator, and starts the migration.
    func migrate(name string, port uint64, peerListenUrls string, peerAdvertiseUrls string, clientListenUrls string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 16 23:10:54 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

        assertEquals(Double.doubleToRawLongBits(x), Double.doubleToRawLongBits(y));
      }
    
      /** constructor initializes to given value */
      public void testConstructor() {
        for (double x : VALUES) {
          AtomicDouble a = new AtomicDouble(x);
          assertBitEquals(x, a.get());
        }
      }
    
      /** default constructed initializes to zero */
      public void testConstructor2() {
        AtomicDouble a = new AtomicDouble();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/cover.go

    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"sync"
    )
    
    var coverMerge struct {
    	f          *os.File
    	sync.Mutex // for f.Write
    }
    
    // initCoverProfile initializes the test coverage profile.
    // It must be run before any calls to mergeCoverProfile or closeCoverProfile.
    // Using this function clears the profile in case it existed from a previous run,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. tests/testdata/config/external_services.yaml

    kind: DestinationRule
    metadata:
     name: external-service-1
     namespace: testns
    spec:
     host: external.extsvc.com
    # BUG: crash envoy
    # trafficPolicy:
    #   tls:
    #     mode: SIMPLE # initiates HTTPS when talking to extsvc.com
    
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-svc-ports
      namespace: testns
    spec:
       hosts:
       - ports.extsvc.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
Back to top