Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 192 for Updatef (0.27 sec)

  1. platforms/software/build-init/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.update-init-template-versions")
    }
    
    description = """This project contains the Build Init plugin, which is automatically applied to the root project of every build, and provides the init and wrapper tasks.
    
    This project should NOT be used as an implementation dependency anywhere (except when building a Gradle distribution)."""
    
    errorprone {
        disabledChecks.addAll(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/server.go

    	s.initWorkloadSdsService()
    	return s
    }
    
    func (s *Server) OnSecretUpdate(resourceName string) {
    	if s.workloadSds == nil {
    		return
    	}
    
    	sdsServiceLog.Debugf("Trigger on secret update, resource name: %s", resourceName)
    	s.workloadSds.push(resourceName)
    }
    
    // Stop closes the gRPC server and debug server.
    func (s *Server) Stop() {
    	if s == nil {
    		return
    	}
    	s.stopped.Store(true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. cmd/naughty-disk_test.go

    	d.disk.SetDiskID(id)
    }
    
    func (d *naughtyDisk) NSScanner(ctx context.Context, cache dataUsageCache, updates chan<- dataUsageEntry, scanMode madmin.HealScanMode, weSleep func() bool) (info dataUsageCache, err error) {
    	if err := d.calcError(); err != nil {
    		return info, err
    	}
    	return d.disk.NSScanner(ctx, cache, updates, scanMode, weSleep)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // The -u flag instructs get to update modules providing dependencies
    // of packages named on the command line to use newer minor or patch
    // releases when available.
    //
    // The -u=patch flag (not -u patch) also instructs get to update dependencies,
    // but changes the default to select patch releases.
    //
    // When the -t and -u flags are used together, get will update
    // test dependencies as well.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. cmd/erasure-healing-common_test.go

    	}
    
    	// List all the file commit ids from parts metadata.
    	modTimes := listObjectModtimes(partsMetadata, errs)
    
    	// Count all latest updated FileInfo values
    	var count int
    	var latestFileInfo FileInfo
    
    	// Reduce list of UUIDs to a single common value - i.e. the last updated Time
    	modTime := commonTime(modTimes, expectedRQuorum)
    
    	if modTime.IsZero() || modTime.Equal(timeSentinel) {
    		return FileInfo{}, errErasureReadQuorum
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. pkg/controller/podgc/gc_controller_test.go

    				}
    				updated, err := strategicpatch.StrategicMergePatch(originalPod, patchedPodBytes, v1.Pod{})
    				if err != nil {
    					t.Fatalf("Failed to apply strategic merge patch %q on pod %#v: %v", patchedPodBytes, originalPod, err)
    				}
    
    				updatedPod := &v1.Pod{}
    				if err := json.Unmarshal(updated, updatedPod); err != nil {
    					t.Fatalf("Failed to unmarshal updated pod %q: %v", updated, err)
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                                                << initial_element_shape);
      // Verifies if the new element type has static shape and matches the potential
      // type passed from caller. Updates the potential_element_type, if not defined
      // yet.
      auto verify_and_update_potential_element_type =
          [&](RankedTensorType new_element_type) -> bool {
        DCOMMENT("\t\tConsidering " << new_element_type << " with old "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/BUILD

    package_group(
        name = "subpackages",
        packages = ["//tensorflow/compiler/mlir/..."],
    )
    
    exports_files(glob(["g3doc/*.md"] + ["g3doc/_includes/tf_passes.md"]))
    
    # To reference all tablegen files here when checking for updates to them.
    filegroup(
        name = "td_files",
        srcs = glob(["**/*.td"]),
    )
    
    cc_library(
        name = "op_or_arg_name_mapper",
        srcs = ["op_or_arg_name_mapper.cc"],
        hdrs = ["op_or_arg_name_mapper.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. cmd/storage-interface.go

    	// has never been replaced.
    	Healing() *healingTracker
    	DiskInfo(ctx context.Context, opts DiskInfoOptions) (info DiskInfo, err error)
    	NSScanner(ctx context.Context, cache dataUsageCache, updates chan<- dataUsageEntry, scanMode madmin.HealScanMode, shouldSleep func() bool) (dataUsageCache, error)
    
    	// Volume operations.
    	MakeVol(ctx context.Context, volume string) (err error)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    	uploadID := base64.RawURLEncoding.EncodeToString([]byte(fmt.Sprintf("%s.%s", globalDeploymentID(), uploadUUID)))
    	uploadIDPath := er.getUploadIDDir(bucket, object, uploadUUID)
    
    	// Write updated `xl.meta` to all disks.
    	if _, err := writeUniqueFileInfo(ctx, onlineDisks, bucket, minioMetaMultipartBucket, uploadIDPath, partsMetadata, writeQuorum); err != nil {
    		return nil, toObjectErr(err, bucket, object)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top