Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 879 for aranges (0.14 sec)

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

    . Try to run the project and debug any errors using the <<troubleshooting.adoc#troubleshooting, Troubleshooting Guide>>.
    
    [[changes_7.0]]
    == Upgrading from 6.9 and earlier
    
    === Changes in the IDE integration
    
    ==== Changes in the IDEA model
    
    The `getGeneratedSourceDirectories()` and `getGeneratedTestDirectories()` methods are removed from the `IdeaContentRoot` interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeRangeMap.java

          remove(range);
          entriesByLowerBound.put(range.lowerBound, new RangeMapEntry<K, V>(range, value));
        }
      }
    
      @Override
      public void putCoalescing(Range<K> range, V value) {
        // don't short-circuit if the range is empty - it may be between two ranges we can coalesce.
        if (entriesByLowerBound.isEmpty()) {
          put(range, value);
          return;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/http.go

        var sel = window.location.hash.substr(1);
        if (sel === '')
          return;
        var parts = sel.split(':');
        var range = new (tr.b.Range || tr.b.math.Range)();
        range.addValue(parseFloat(parts[0]));
        range.addValue(parseFloat(parts[1]));
        viewer.trackView.viewport.interestRange.set(range);
      }
    
      function onImportFail(err) {
        var overlay = new tr.ui.b.Overlay();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    	}
    }
    
    // DryRun, if true, will use server-side dry-run to not persist changes to storage.
    // Otherwise, changes will be persisted to storage.
    func (m *Helper) DryRun(dryRun bool) *Helper {
    	m.ServerDryRun = dryRun
    	return m
    }
    
    // WithFieldManager sets the field manager option to indicate the actor or entity
    // that is making changes in a create or update operation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        inputFile = a.outputFile
        outputFile = file('src.b.txt')
    }
    // Use a separate build script to avoid invalidating task implementations
    apply from: 'changes.gradle'
    '''
            def changesFile = file('changes.gradle').createFile()
    
            TestFile inputFile = file('src.txt')
            TestFile outputFileA = file('src.a.txt')
            TestFile outputFileB = file('src.b.txt')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/dwarf.go

    	if !startPos.IsKnown() || startPos.RelLine() != uint(s.Func().StartLine) {
    		panic("bad startPos")
    	}
    	fnstate := &dwarf.FnState{
    		Name:          s.Name,
    		Info:          info,
    		Loc:           loc,
    		Ranges:        ranges,
    		Absfn:         absfunc,
    		StartPC:       s,
    		Size:          s.Size,
    		StartPos:      startPos,
    		External:      !s.Static(),
    		Scopes:        scopes,
    		InlCalls:      inlcalls,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/framework_test.go

    	// idle.
    	oldChanges := -1
    	for {
    		time.Sleep(10 * time.Millisecond)
    		changes := r.GetChangeCount()
    		if changes == oldChanges {
    			// No changes for last 10ms -> controller must be idle.
    			break
    		}
    		oldChanges = changes
    	}
    }
    
    // waitTest waits until all tests, controllers and other goroutines do their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

                }
            """)
            file("input.txt").text = "input"
    
            when:
            fails("consumer", "--info")
            then:
            failureHasCause("Changes are not tracked, unable determine incremental changes.")
        }
    
        def "can register untracked tasks via the runtime API"() {
            buildFile("""
                tasks.register("myTask") {
                    doNotTrackState("For testing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimap.java

       *
       * <p>Changes to the returned collection will update the underlying multimap, and vice versa.
       * However, <i>adding</i> to the returned collection is not possible.
       */
      Collection<V> values();
    
      /**
       * Returns a view collection of all key-value pairs contained in this multimap, as {@link Entry}
       * instances.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        }
    
        def "out-of-date when any input file changes"() {
            given:
            execute(unitOfWork)
    
            when:
            inputFile.write("some new content")
    
            then:
            outOfDate(unitOfWork, inputFilesChanged(file: [inputFile]))
        }
    
        def "out-of-date when any input file type changes"() {
            given:
            execute(unitOfWork)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top