Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for typemap (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    """Defines a wrapper class for overridden python method definitions."""
    
    from collections.abc import Callable, Collection, Mapping, Sequence
    import functools
    import traceback
    from typing import Optional, TypeVar
    
    from absl import logging
    
    from tensorflow.compiler.mlir.quantization.stablehlo import quantization_config_pb2 as stablehlo_quant_config_pb2
    from tensorflow.compiler.mlir.quantization.tensorflow import exported_model_pb2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    		deltaLog.Debugf("ADS:%s: REQ %s Expired nonce received %s, sent %s", stype,
    			con.ID(), request.ResponseNonce, previousInfo.NonceSent)
    		xds.ExpiredNonce.With(typeTag.Value(v3.GetMetricType(request.TypeUrl))).Increment()
    		return false
    	}
    	// If it comes here, that means nonce match. This an ACK. We should record
    	// the ack details and respond if there is a change in resource names.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

    import java.util.Comparator;
    import java.util.HashSet;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Set;
    import java.util.TreeMap;
    import java.util.TreeSet;
    import java.util.function.Predicate;
    import java.util.stream.Collectors;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Description;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	}
    	return sets.Set[string]{}
    }
    
    var (
    	typeTag = monitoring.CreateLabel("type")
    	nameTag = monitoring.CreateLabel("name")
    
    	totalRejectedConfigs = monitoring.NewSum(
    		"pilot_total_rejected_configs",
    		"Total number of configs that Pilot had to reject or ignore.",
    	)
    )
    
    func RecordRejectedConfig(gatewayName string) {
    	totalRejectedConfigs.With(typeTag.Value("gateway"), nameTag.Value(gatewayName)).Increment()
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. src/runtime/traceruntime.go

    	lockInit(&trace.stackTab[0].tab.mem.lock, lockRankTraceStackTab)
    	lockInit(&trace.stackTab[1].tab.mem.lock, lockRankTraceStackTab)
    	lockInit(&trace.typeTab[0].tab.mem.lock, lockRankTraceTypeTab)
    	lockInit(&trace.typeTab[1].tab.mem.lock, lockRankTraceTypeTab)
    	lockInit(&trace.lock, lockRankTrace)
    }
    
    // lockRankMayTraceFlush records the lock ranking effects of a
    // potential call to traceFlush.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. pkg/xds/server.go

    				id, request.ResponseNonce)
    		}
    		log.Debugf("ADS:%s: REQ %s Expired nonce received %s, sent %s", stype,
    			id, request.ResponseNonce, previousInfo.NonceSent)
    		ExpiredNonce.With(typeTag.Value(model.GetMetricType(request.TypeUrl))).Increment()
    		return false, emptyResourceDelta
    	}
    
    	// If it comes here, that means nonce match.
    	var previousResources []string
    	var alwaysRespond bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    	// There are 2 of each: one for gen%2, one for 1-gen%2.
    	stackTab  [2]traceStackTable  // maps stack traces to unique ids
    	stringTab [2]traceStringTable // maps strings to unique ids
    	typeTab   [2]traceTypeTable   // maps type pointers to unique ids
    
    	// cpuLogRead accepts CPU profile samples from the signal handler where
    	// they're generated. There are two profBufs here: one for gen%2, one for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top