Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for existingValue (0.35 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            then:
            0 * onAccess._
            0 * onRemove._
    
            where:
            key        | removedValue    | reportedValue   | expectedResult
            'existing' | 'existingValue' | 'existingValue' | true
            'existing' | 'missingValue'  | 'existingValue' | false
            'missing'  | 'missingValue'  | null            | false
    
            // onRemove is only called if the value is actually removed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/template.go

    			return existingValue
    		}
    		for _, net := range networks {
    			if net["name"] == istioCniNetwork {
    				return existingValue
    			}
    		}
    		return existingValue[0:i] + fmt.Sprintf(`, {"name": "%s"}`, istioCniNetwork) + existingValue[i:]
    	}
    	for _, net := range strings.Split(existingValue, ",") {
    		if strings.TrimSpace(net) == istioCniNetwork {
    			return existingValue
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/DirectedGraphConnections.java

            N predecessor = incidentEdge.nodeU();
    
            Object existingValue = adjacentNodeValues.put(predecessor, PRED);
            if (existingValue != null) {
              adjacentNodeValues.put(predecessor, new PredAndSucc(existingValue));
            }
    
            orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(predecessor));
            predecessorCount++;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            N predecessor = incidentEdge.nodeU();
    
            Object existingValue = adjacentNodeValues.put(predecessor, PRED);
            if (existingValue != null) {
              adjacentNodeValues.put(predecessor, new PredAndSucc(existingValue));
            }
    
            orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(predecessor));
            predecessorCount++;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

                if (readingObj instanceof List) {
                    @SuppressWarnings("unchecked")
                    final List<String> existingValues = (List<String>) readingObj;
                    concatValues(existingValues, readings[i]);
                    map.put(FieldNames.READING_PREFIX + i, existingValues.stream().distinct().toList());
                } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/DenseImmutableTable.java

          int rowIndex = requireNonNull(rowKeyToIndex.get(rowKey));
          int columnIndex = requireNonNull(columnKeyToIndex.get(columnKey));
          V existingValue = values[rowIndex][columnIndex];
          checkNoDuplicate(rowKey, columnKey, existingValue, cell.getValue());
          values[rowIndex][columnIndex] = cell.getValue();
          rowCounts[rowIndex]++;
          columnCounts[columnIndex]++;
          cellRowIndices[i] = rowIndex;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/DenseImmutableTable.java

          int rowIndex = requireNonNull(rowKeyToIndex.get(rowKey));
          int columnIndex = requireNonNull(columnKeyToIndex.get(columnKey));
          V existingValue = values[rowIndex][columnIndex];
          checkNoDuplicate(rowKey, columnKey, existingValue, cell.getValue());
          values[rowIndex][columnIndex] = cell.getValue();
          rowCounts[rowIndex]++;
          columnCounts[columnIndex]++;
          cellRowIndices[i] = rowIndex;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. pkg/kubelet/config/config.go

    	if candidateMap == nil {
    		candidateMap = make(map[string]string)
    	}
    	for k, v := range candidateMap {
    		if isLocalAnnotationKey(k) {
    			continue
    		}
    		if existingValue, ok := existingMap[k]; ok && existingValue == v {
    			continue
    		}
    		return false
    	}
    	for k := range existingMap {
    		if isLocalAnnotationKey(k) {
    			continue
    		}
    		// stale entry in existing map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            EXISTING_KEY            | EXISTING_VALUE        | EXISTING_VALUE   | true
            EXISTING_KEY            | EXISTING_VALUE        | OTHER_VALUE      | false
            EXISTING_KEY            | EXISTING_VALUE        | null             | false
            MISSING_KEY             | null                  | EXISTING_VALUE   | false
            'keyWithNonStringValue' | NON_STRING_VALUE      | NON_STRING_VALUE | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top