Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for aranges (0.2 sec)

  1. src/net/http/fs_test.go

    	{r: "bytes=0-9", code: StatusPartialContent, ranges: []wantRange{{0, testFileLen - 1}}},
    	{r: "bytes=0-10", code: StatusPartialContent, ranges: []wantRange{{0, testFileLen}}},
    	{r: "bytes=0-11", code: StatusPartialContent, ranges: []wantRange{{0, testFileLen}}},
    	{r: "bytes=10-11", code: StatusPartialContent, ranges: []wantRange{{testFileLen - 1, testFileLen}}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		switch {
    		case specValue > statusValue: // append
    			changes.ContainersToUpdate[rName] = append(changes.ContainersToUpdate[rName], cUpdateInfo)
    		case specValue < statusValue: // prepend
    			changes.ContainersToUpdate[rName] = append(changes.ContainersToUpdate[rName], containerToUpdateInfo{})
    			copy(changes.ContainersToUpdate[rName][1:], changes.ContainersToUpdate[rName])
    			changes.ContainersToUpdate[rName][0] = cUpdateInfo
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			if types.IsRestartableInitContainer(container) {
    				changes.InitContainersToStart = append(changes.InitContainersToStart, i)
    			} else { // init container
    				if isInitContainerFailed(status) {
    					if !restartOnFailure {
    						changes.KillPod = true
    						changes.InitContainersToStart = nil
    						return false
    					}
    					changes.InitContainersToStart = append(changes.InitContainersToStart, i)
    					break
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	// before PreBind, as if the some other PreBind plugin had failed.
    	unreserveBeforePreBind *result
    }
    
    // prepare contains changes for objects in the API server.
    // Those changes are applied before running the steps. This can
    // be used to simulate concurrent changes by some other entities
    // like a resource driver.
    type prepare struct {
    	filter     change
    	prescore   change
    	reserve    change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                    }
                    module("org:b:1.0") {
                        edge("org:leaf:[5,8]", "org:leaf:8")
                    }
                }
            }
        }
    
        def "fail when ranges are disjoint and no top range artifact is present"() {
            given:
            (1..10).each {
                mavenRepo.module("org", "leaf", "$it").publish()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	newGo, newToolchain := toolchainVersions(newReqs)
    	if oldGo != newGo {
    		changes["go"] = change{"go", oldGo, newGo}
    	}
    	if oldToolchain != newToolchain {
    		changes["toolchain"] = change{"toolchain", oldToolchain, newToolchain}
    	}
    
    	sortedChanges := make([]change, 0, len(changes))
    	for _, c := range changes {
    		sortedChanges = append(sortedChanges, c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Since the previous version was 6.48.0, all changes since then are included.
    
    ==== Upgrade to JaCoCo 0.8.9
    
    JaCoCo has been updated to https://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.9].
    
    ==== Plugin compatibility changes
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            property.implicitFinalizeValue()
            property.implicitFinalizeValue()
            property.disallowChanges()
    
            then:
            0 * _
        }
    
        def "can finalize after changes disallowed"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
    
            when:
            property.set(provider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

          Map<K, Collection<V>> asMap(Multimap<K, V> multimap) {
        return multimap.asMap();
      }
    
      /**
       * Returns a multimap view of the specified map. The multimap is backed by the map, so changes to
       * the map are reflected in the multimap, and vice versa. If the map is modified while an
       * iteration over one of the multimap's collection views is in progress (except through the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	}
    	return nil
    }
    
    // hasRange returns true if a special time range on the goroutine as in progress.
    func (s *rangeState) hasRange(typ rangeType) bool {
    	for _, ftyp := range s.inFlight {
    		if ftyp == typ {
    			return true
    		}
    	}
    	return false
    }
    
    // endRange ends a special range in time on the goroutine.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top