Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,947 for chansend (0.36 sec)

  1. pilot/pkg/xds/deltatest.go

    // compareDiff compares a Delta and SotW XDS response. This allows checking that the Delta XDS
    // response returned the optimal result. Checks include correctness checks (e.g. if a config changed,
    // we must include it) and possible optimizations (e.g. we sent a config, but it was not changed).
    func (s *DiscoveryServer) compareDiff(
    	con *Connection,
    	w *model.WatchedResource,
    	sotwRes model.Resources,
    	deltaRes model.Resources,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/apply_test.go

    			want:  "testdata/configmap.yaml",
    		},
    		{
    			name:         "updates if present",
    			currentState: "testdata/configmap.yaml",
    			input:        "testdata/configmap-changed.yaml",
    			want:         "testdata/configmap-changed.yaml",
    		},
    		// Test IstioOperator field removals
    		{
    			name:  "creates if not present",
    			input: "testdata/iop-test-gw-1.yaml",
    			want:  "testdata/iop-test-gw-1.yaml",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. doc/godebug.md

    [`tlskyber` setting](/pkg/crypto/tls/#Config.CurvePreferences).
    
    Go 1.23 changed the behavior of
    [crypto/x509.ParseCertificate](/pkg/crypto/x509/#ParseCertificate) to reject
    serial numbers that are negative. This change can be reverted with
    the [`x509negativeserial` setting](/pkg/crypto/x509/#ParseCertificate).
    
    Go 1.23 changed the behavior of
    [crypto/x509.ParseCertificate](/pkg/crypto/x509/#ParseCertificate) to reject
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    If the changed property is a file property, then the reasons can be the same as for the change of a value property.
    Most probably though a file on the filesystem changed in a way that Gradle detects a difference for this input.
    The most common case will be that the source code was changed by a check in.
    It is also possible that a file generated by a task changed, e.g. since it includes a timestamp.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DefaultDomainObjectCollection.java

            assertMutable("addAll(Collection<T>)");
            assertMutableCollectionContents();
            boolean changed = false;
            for (T o : c) {
                if (doAdd(o, eventRegister.getAddActions())) {
                    changed = true;
                }
            }
            return changed;
        }
    
        @Override
        public void clear() {
            assertMutable("clear()");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          refreshIfEmpty();
          boolean changed = delegate.remove(o);
          if (changed) {
            totalSize--;
            removeIfEmpty();
          }
          return changed;
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          if (c.isEmpty()) {
            return false;
          }
          int oldSize = size(); // calls refreshIfEmpty
          boolean changed = delegate.removeAll(c);
          if (changed) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/deployment/internal/Deployment.java

             */
            @Nullable
            Throwable getFailure();
    
            /**
             * Returns true if the deployment's runtime may have changed since the previous status was reported.
             * @return whether the deployment runtime may have changed.
             */
            boolean hasChanged();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/common/equality_test.go

    		},
    		{
    			Name: "Changed Index In Old Object not correlatable",
    			RootObject: []interface{}{
    				"a",
    				"b",
    			},
    			RootOldObject: []interface{}{
    				"a",
    				"oldB",
    			},
    			Schema: mustSchema(`
                    items:
                        type: string
                `),
    			KeyPath: []interface{}{1},
    		},
    		{
    			Name: "Changed Index In Nested Old Object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 21:36:46 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http2/FlowControlListener.kt

      /**
       * Notification that the receiving stream flow control window has changed.
       * [WindowCounter] generally carries the client view of total and acked bytes.
       */
      fun receivingStreamWindowChanged(
        streamId: Int,
        windowCounter: WindowCounter,
        bufferSize: Long,
      )
    
      /**
       * Notification that the receiving connection flow control window has changed.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because an input to build file 'build.gradle' has changed.")
            outputContains(output2)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top