Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 384 for changedTo (0.58 sec)

  1. doc/next/6-stdlib/99-minor/crypto/tls/67065.md

    Go 1.23 changed the behavior of [X509KeyPair] and [LoadX509KeyPair]
    to populate the [Certificate.Leaf] field of the returned [Certificate].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 226 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

                    </classes>
                  </test>
                </suite>
            '''.stripIndent()
        }
    
        @Issue('https://github.com/gradle/gradle/issues/4924')
        def 'test task is up-to-date when #property is changed because it should not impact output'() {
            given:
            buildScript """
                apply plugin: "java"
                ${mavenCentralRepository()}
                testing {
                    suites {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "cannot set to empty map after changes disallowed"() {
            given:
            property.set(someValue())
            property.disallowChanges()
            when:
            property.empty()
            then:
            def e = thrown IllegalStateException
            e.message == 'The value for this property cannot be changed any further.'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multisets.java

        } else {
          checkNotNull(multisetToModify);
          checkNotNull(occurrencesToRemove);
          boolean changed = false;
          for (Object o : occurrencesToRemove) {
            changed |= multisetToModify.remove(o);
          }
          return changed;
        }
      }
    
      /**
       * For each occurrence of an element {@code e} in {@code occurrencesToRemove}, removes one
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    		// Add or update capacity if it the size was previously unsupported or has changed
    		if !resourceIsSupported || capacity.Cmp(initialCapacity) != 0 {
    			existingNode.Status.Capacity[resourceName] = initialCapacity.DeepCopy()
    			requiresUpdate = true
    		}
    
    		// Add or update allocatable if it the size was previously unsupported or has changed
    		if !resourceIsSupported || allocatable.Cmp(initialAllocatable) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                    )
                ),
                equalTo("file 'displayNameOf(scriptFile)' has changed")
            )
        }
    
        @Test
        fun `build input file has been removed`() {
            val inputFile = File("input.txt")
            // no need to match a missing file hash, as long it is changed from the original one
            val missingFileHash = TestHashCodes.hashCodeFrom(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/InvalidateVirtualFileSystemAfterChangeCrossVersionSpec.groovy

        }
    
        @TargetGradleVersion(">=6.1")
        def "changed paths need to be absolute"() {
            changedPaths = ["some/relative/path"]
    
            when:
            withConnection { connection ->
                connection.notifyDaemonsAboutChangedPaths(toPaths(changedPaths))
            }
    
            then:
            def exception = thrown(IllegalArgumentException)
            exception.message == "Changed path '${Paths.get(changedPaths[0])}' is not absolute"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    func NewRecordFlags() *RecordFlags {
    	record := false
    
    	return &RecordFlags{
    		Record: &record,
    	}
    }
    
    // Recorder is used to record why a runtime.Object was changed in an annotation.
    type Recorder interface {
    	// Record records why a runtime.Object was changed in an annotation.
    	Record(runtime.Object) error
    	MakeRecordMergePatch(runtime.Object) ([]byte, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    // and if it is, updates the controller's gateways.
    func (c *Controller) extractGatewaysFromService(svc *model.Service) bool {
    	changed := c.extractGatewaysInner(svc)
    	if changed {
    		c.NotifyGatewayHandlers()
    	}
    	return changed
    }
    
    // reloadNetworkGateways performs extractGatewaysFromService for all services registered with the controller.
    // It is called only by `onNetworkChange`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	if skip(t) {
    		return nil
    	}
    	name := t.Name.Copy(fn, skip)
    	changed := name != nil
    	args := make([]AST, len(t.Args))
    	for i, a := range t.Args {
    		ac := a.Copy(fn, skip)
    		if ac == nil {
    			args[i] = a
    		} else {
    			args[i] = ac
    			changed = true
    		}
    	}
    	if !changed {
    		return fn(t)
    	}
    	if name == nil {
    		name = t.Name
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
Back to top