Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for deduplicated (0.34 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	eventMessage := message
    	if len(args) > 0 {
    		eventMessage = fmt.Sprintf(message, args...)
    	}
    	// this is a hack, but often the error from the runtime includes the containerID
    	// which kills our ability to deduplicate events.  this protection makes a huge
    	// difference in the number of unique events
    	if containerID != "" {
    		eventMessage = strings.Replace(eventMessage, containerID, container.Name, -1)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    				},
    			},
    			wantErrors: field.ErrorList{
    				field.Invalid(field.NewPath("spec", "trustBundle"), "<value omitted>", "entry 0 does not have the CA bit set"),
    			},
    		}, {
    			description: "invalid, duplicated blocks",
    			bundle: &capi.ClusterTrustBundle{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: capi.ClusterTrustBundleSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	expectEndpoints(t, s, "outbound|90||service.namespace.svc.cluster.local", []string{"1.2.3.4:90", "2.3.4.5:90"}, nil)
    
    	// Move the endpoint to another slice - transition phase where its duplicated
    	createEndpointSlice(t, s.KubeClient().Kube(), "slice1", "service", namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"1.2.3.5", "2.3.4.5"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns an iterator over the merged contents of all given {@code iterators}, traversing every
       * element of the input iterators. Equivalent entries will not be de-duplicated.
       *
       * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this
       * method does not sort its input.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Returns an iterator over the merged contents of all given {@code iterators}, traversing every
       * element of the input iterators. Equivalent entries will not be de-duplicated.
       *
       * <p>Callers must ensure that the source {@code iterators} are in non-descending order as this
       * method does not sort its input.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/reflect/type.go

    	// visited records the structs that have been considered already.
    	// Embedded pointer fields can create cycles in the graph of
    	// reachable embedded types; visited avoids following those cycles.
    	// It also avoids duplicated effort: if we didn't find the field in an
    	// embedded type T at level 2, we won't find it in one at level 4 either.
    	visited := map[*structType]bool{}
    
    	for len(next) > 0 {
    		current, next = next, current[:0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    		// and eventually the whole cycle completes.
    
    		// Copy any cycle location to a temp register. This duplicates
    		// one of the cycle entries, allowing the just duplicated value
    		// to be overwritten and the cycle to proceed.
    		d := dsts[0]
    		loc := d.loc
    		vid := e.contents[loc].vid
    		c := e.contents[loc].c
    		r := e.findRegFor(c.Type)
    		if e.s.f.pass.debug > regDebug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

            operand_idx);
      }
      // `return_value_from_host` and `return_value_from_device` together contain
      // all elements in operands in `return_op`, including duplicated ones. They
      // are one to one mapping. Therefore, when we iterate `return_value_from_host`
      // and `return_value_from_device`, it is safe to access return_operand_map and
      // call `front()` method.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. src/cmd/dist/build.go

    				fatalf("%s should not exist in release build", p)
    			}
    		}
    	}
    }
    
    /*
     * Tool building
     */
    
    // mustLinkExternal is a copy of internal/platform.MustLinkExternal,
    // duplicated here to avoid version skew in the MustLinkExternal function
    // during bootstrapping.
    func mustLinkExternal(goos, goarch string, cgoEnabled bool) bool {
    	if cgoEnabled {
    		switch goarch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

     *  Fix: Drop cookies that contain ASCII NULL and other bad characters. Previously such cookies
        would cause OkHttp to crash when they were included in a request.
     *  Fix: Release duplicated multiplexed connections. If we concurrently establish connections to an
        HTTP/2 server, close all but the first connection.
     *  Fix: Fail the HTTP/2 connection if first frame isn't `SETTINGS`.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top