Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for Mutated (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `Maven` Plugin used to publish the highly outdated Maven 2 metadata format. This has been changed and it will now publish Maven 3 metadata, just like the `Maven Publish` Plugin.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    	T2  T2
    }
    
    type Generic[T any] struct {
    	X T
    }
    
    var (
    	nameAttr     = "Sarah"
    	ageAttr      = uint(12)
    	contentsAttr = "lorem ipsum"
    	empty        = ""
    )
    
    // Unless explicitly stated as such (or *Plain), all of the
    // tests below are two-way tests. When introducing new tests,
    // please try to make them two-way as well to ensure that
    // marshaling and unmarshaling are as symmetrical as feasible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. pkg/kubelet/nodestatus/setters_test.go

    	}
    	return images
    }
    
    func makeExpectedImageList(imageList []kubecontainer.Image, maxImages, maxNames int32) []v1.ContainerImage {
    	// copy the imageList, we do not want to mutate it in-place and accidentally edit a test case
    	images := make([]kubecontainer.Image, len(imageList))
    	copy(images, imageList)
    	// sort images by size
    	sort.Sort(sliceutils.ByImageSize(images))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ANDconst [m] (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    (AND (MOVDconst [m]) (ROTLW x r)) && isPPC64WordRotateMask(m) => (RLWNM [encodePPC64RotateMask(0,m,32)] x r)
    
    // Note, any rotated word bitmask is still a valid word bitmask.
    (ROTLWconst [r] (AND (MOVDconst [m]) x)) && isPPC64WordRotateMask(m) => (RLWINM [encodePPC64RotateMask(r,rotateLeft32(m,r),32)] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    func (npm *nominator) NominatedPodsForNode(nodeName string) []*framework.PodInfo {
    	npm.lock.RLock()
    	defer npm.lock.RUnlock()
    	// Make a copy of the nominated Pods so the caller can mutate safely.
    	pods := make([]*framework.PodInfo, len(npm.nominatedPods[nodeName]))
    	for i := 0; i < len(pods); i++ {
    		pods[i] = npm.nominatedPods[nodeName][i].DeepCopy()
    	}
    	return pods
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    // attribute so that we can bail out if we see them a second time.
    //
    // TODO(sanjoy): This method is not robust since it is possible that the
    // optimizations run by PartitionedCall can mutate the cluster arbitrarily,
    // dropping the kXlaAlreadyClustered attributes from all nodes in the process.
    // The correct fix is to use the ConfigProto to pass in some sort of flag into
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    	/* Firefox only */
    	.site-header__navigation-submenu-section:after {
    		top: 2px;
    		right: -4px;
    	}
    }
    
    /* Added dark mode and other items for outdated Prettify.css */
    code[data-lang="text"] .pln,
    code[data-lang="text"] .str,
    code[data-lang="text"] .kwd,
    code[data-lang="text"] .com,
    code[data-lang="text"] .typ,
    code[data-lang="text"] .lit,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// We store the pointer as returned by the lister. The
    		// assumption is that if a claim gets modified while our code
    		// runs, the cache will store a new pointer, not mutate the
    		// existing object that we point to here.
    		claims = append(claims, claim)
    	}); err != nil {
    		return nil, err
    	}
    	return claims, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    		logger.V(2).Info("Skip syncing the job as it is managed by an external controller", "key", key, "uid", sharedJob.UID, "controllerName", controllerName)
    		return nil
    	}
    
    	// make a copy so we don't mutate the shared cache
    	job := *sharedJob.DeepCopy()
    
    	// if job was finished previously, we don't want to redo the termination
    	if util.IsJobFinished(&job) {
    		err := jm.podBackoffStore.removeBackoffRecord(key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	-vet list
    	    Configure the invocation of "go vet" during "go test"
    	    to use the comma-separated list of vet checks.
    	    If list is empty, "go test" runs "go vet" with a curated list of
    	    checks believed to be always worth addressing.
    	    If list is "off", "go test" does not run "go vet" at all.
    
    The following flags are also recognized by 'go test' and can be used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top