Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,932 for changedTo (0.27 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            succeeds("myTask")
            output.contains "value: original"
    
            when:
            waitBeforeModification(markerFile)
            markerFile.text = "changed"
    
            then:
            buildTriggeredAndSucceeded()
            output.contains "value: changed"
        }
    
        def "detects changes in filtered file tree inputs"() {
            def sources = file("sources").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/options/options.go

    	}
    	if leaderelection.Changed("leader-elect-retry-period") {
    		cfg.LeaderElection.RetryPeriod = o.LeaderElection.RetryPeriod
    	}
    	if leaderelection.Changed("leader-elect-resource-lock") {
    		cfg.LeaderElection.ResourceLock = o.LeaderElection.ResourceLock
    	}
    	if leaderelection.Changed("leader-elect-resource-name") {
    		cfg.LeaderElection.ResourceName = o.LeaderElection.ResourceName
    	}
    	if leaderelection.Changed("leader-elect-resource-namespace") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def removed = target.file("source.txt")
            removed.delete()
            def changed = target.file("dir/another.txt")
            changed << "changed!"
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            removed.text == "Hello world!"
            changed.text == "Goodbye world!"
        }
    
        // commit() method seems to leak files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/visitor.go

    	// the subtrees. It is allowed to mutate s. Return true if something has been changed.
    	// +optional
    	Structural func(s *Structural) bool
    	// NestedValueValidation is called on each NestedValueValidation node in the schema,
    	// before recursing into subtrees. It is allowed to mutate vv. Return true if something
    	// has been changed.
    	// +optional
    	NestedValueValidation func(vv *NestedValueValidation) bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_changes.txt

    # When adding a requirement, 'go get' prints a message for the requirement
    # and for changed explicit dependencies. 'go get' does not print messages
    # for changed indirect dependencies.
    go list -m all
    ! stdout golang.org/x/text
    go get rsc.io/quote@v1.5.2
    stderr '^go: added rsc.io/quote v1.5.2$'
    stderr '^go: upgraded rsc.io/sampler v1.0.0 => v1.3.0$'
    ! stderr '^go get.*golang.org/x/text'
    go list -m all
    stdout golang.org/x/text
    cmp go.mod go.mod.upgrade
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool changed = false;
      // Map each of the results of the call to the returned type of the
      // function.
      for (auto result :
           zip(op->getResults(), func.getFunctionType().getResults())) {
        changed = RefineResultType(op, std::get<0>(result), std::get<1>(result)) ||
                  changed;
      }
      DCOMMENT(" - call " << func.getName() << "changed ? " << changed << "\n");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/tighten.go

    				}
    				startMem[b.ID] = mem
    				changed = append(changed, b)
    			}
    		}
    	}
    
    	// Second step, floods the known memory state of some blocks to others.
    	for len(changed) != 0 {
    		top := changed[0]
    		changed = changed[1:]
    		mem := startMem[top.ID]
    		for i, p := range top.Preds {
    			pb := p.b
    			if endMem[pb.ID] != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

            file('build/tmp/myTask/output.txt').text == "changed"
            outputContains("Implementation of input property 'action' has changed for task ':myTask'")
    
            where:
            originalImplementation                  | changedImplementation
            '{ it.text = "hello" }'                 | '{ it.text = "changed" }'
            wrapAction('outputFile.text = "hello"') | wrapAction('outputFile.text = "changed"')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  9. src/debug/macho/reloctype_string.go

    package macho
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[GENERIC_RELOC_VANILLA-0]
    	_ = x[GENERIC_RELOC_PAIR-1]
    	_ = x[GENERIC_RELOC_SECTDIFF-2]
    	_ = x[GENERIC_RELOC_PB_LA_PTR-3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/internal/godebugs/godebugs_test.go

    		}
    		last = info.Name
    
    		if info.Package == "" {
    			t.Errorf("Name=%s missing Package", info.Name)
    		}
    		if info.Changed != 0 && info.Old == "" {
    			t.Errorf("Name=%s has Changed, missing Old", info.Name)
    		}
    		if info.Old != "" && info.Changed == 0 {
    			t.Errorf("Name=%s has Old, missing Changed", info.Name)
    		}
    		if !strings.Contains(doc, "`"+info.Name+"`") {
    			t.Errorf("Name=%s not documented in doc/godebug.md", info.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top