Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 303 for deduplicated (0.19 sec)

  1. src/regexp/syntax/simplify.go

    // The resulting regexp will execute correctly but its string representation
    // will not produce the same parse tree, because capturing parentheses
    // may have been duplicated or removed. For example, the simplified form
    // for /(x){1,2}/ is /(x)(x)?/ but both parentheses capture as $1.
    // The returned regexp may share structure with or be the original.
    func (re *Regexp) Simplify() *Regexp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    #   $1:... : the trap command.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-trap-push {
      local t="${*:1}"
      LOG_TRAP_STACK+=("${t}")
      # shellcheck disable=2064
      trap "${t}" EXIT
    }
    
    # Removes and restores an EXIT trap.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (1)
  3. pkg/scheduler/apis/config/v1/default_plugins.go

    			}
    			enabledPlugins = append(enabledPlugins, defaultEnabledPlugin)
    		}
    	}
    
    	// Append all the custom plugins which haven't replaced any default plugins.
    	// Note: duplicated custom plugins will still be appended here.
    	// If so, the instantiation of scheduler framework will detect it and abort.
    	for index, plugin := range customPluginSet.Enabled {
    		if !replacedPluginIndex.Has(index) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

    # ------------
    
    # Returns a sorted newline-separated list containing only duplicated items.
    kube::golang::dups() {
      # We use printf to insert newlines, which are required by sort.
      printf "%s\n" "$@" | sort | uniq -d
    }
    
    # Returns a sorted newline-separated list with duplicated items removed.
    kube::golang::dedup() {
      # We use printf to insert newlines, which are required by sort.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache_test.go

    		if providerName != "panda" {
    			t.Errorf(`expected "panda" as provider name, got %q`, providerName)
    		}
    		if _, loaded := record.LoadOrStore(size, nil); loaded {
    			t.Errorf("detected duplicated cache size metric for %d", size)
    		}
    		newSize := uint64(size)
    		oldSize := cacheSize.Swap(newSize)
    		if oldSize > newSize {
    			t.Errorf("cache size decreased from %d to %d", oldSize, newSize)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pilot/pkg/config/aggregate/config.go

    		curConfigs := store.List(typ, namespace)
    		storeConfigs = append(storeConfigs, curConfigs)
    		configCnt += len(curConfigs)
    	}
    
    	configs = make([]config.Config, 0, configCnt)
    	// Used to remove duplicated config
    	configMap := sets.NewWithLength[types.NamespacedName](configCnt)
    	for _, curConfigs := range storeConfigs {
    		configs = append(configs, curConfigs...)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. src/mdo/reader.vm

                default:
                    if (!parsed.add(tagName)) {
                        throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
                    }
            }
    #else
            if (!parsed.add(tagName)) {
                throw new XMLStreamException("Duplicated tag: '" + tagName + "'", parser.getLocation(), null);
            }
    #end
            return tagName;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/destination_rule.go

    			// traffic policies if they already exist
    			for _, subset := range rule.Subsets {
    				if !existingSubset.Contains(subset.Name) {
    					// if not duplicated, append
    					mergedRule.Subsets = append(mergedRule.Subsets, subset)
    				} else {
    					// duplicate subset
    					ps.AddMetric(DuplicatedSubsets, string(resolvedHost), "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/inlining.mlir

      %0 = "tf.CustomTFOp"() : () -> tensor<2xi32>
      func.return %0 : tensor<2xi32>
    }
    
    // Test that unregistered user-defined custom TF operations can not be inlined
    // when there are duplicated cases.
    
    // CHECK-LABEL: func @dont_inline_custom_on_duplicated_cases(
    func.func @dont_inline_custom_on_duplicated_cases() -> tensor<2xi32> {
      // CHECK-NEXT: "tf.PartitionedCall"
      // CHECK-NEXT: "tf.PartitionedCall"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

    // CHECK: return %[[IDENTITY]]#0, %[[IDENTITY]]#1 : tensor<?xf32>, tensor<?xi32>
    }
    
    // -----
    
    // Test that the signature prefix is added when there are duplicated input names.
    module attributes {tf.versions = {producer = 930 : i32}, tf_saved_model.semantics, tfl.description = "MLIR Converted.", tfl.schema_version = 3 : i32}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top