Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 280 for Xadd (0.03 sec)

  1. src/cmd/trace/regions.go

    	}
    }
    
    func (s *regionStats) add(t *parsedTrace, region *trace.UserRegionSummary) {
    	s.Histogram.Add(regionInterval(t, region).duration())
    }
    
    var templUserRegionTypes = template.Must(template.New("").Parse(`
    <!DOCTYPE html>
    <title>Regions</title>
    <style>` + traceviewer.CommonStyle + `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

                group = 'com.acme'
                version = '0.x'
    
                configurations {
                        create 'default'
                    }
    
                    dependencies {
                        add('default', 'org:module:1.0')
                    }
            """
            file("included/settings.gradle") << """
                rootProject.name = 'included'
            """
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    	meta.ProxyConfig = (*model.NodeMetaProxyConfig)(options.ProxyConfig)
    
    	extractAttributesMetadata(options.Envs, options.Platform, meta)
    	// Add all instance labels with lower precedence than pod labels
    	extractInstanceLabels(options.Platform, meta)
    
    	// Add all pod labels found from filesystem
    	// These are typically volume mounted by the downward API
    	lbls, err := readPodLabels()
    	if err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            selectionCauses.add(componentSelectionDescriptor);
        }
    
        public void setRoot() {
            this.root = true;
        }
    
        @Override
        public List<ResolvedGraphVariant> getSelectedVariants() {
            ImmutableList.Builder<ResolvedGraphVariant> builder = ImmutableList.builder();
            addSelectedVariants(builder::add);
            return builder.build();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    		// Example:
    		//
    		// 	//go:wasmimport gojs add
    		// 	func importedAdd(a, b uint) uint
    		//
    		// will roughly become
    		//
    		// 	(import "gojs" "add" (func (param i32)))
    		wi.Params = []obj.WasmField{{Type: obj.WasmI32}}
    	} else {
    		// All other imported functions use the normal WASM ABI.
    		// Example:
    		//
    		// 	//go:wasmimport a_module add
    		// 	func importedAdd(a, b uint) uint
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    			// type only. Otherwise report for the whole call to (*testing.F).Add
    			if len(mismatched) == 1 {
    				i := mismatched[0]
    				expr := call.Args[i]
    				t := pass.TypesInfo.Types[expr].Type
    				pass.ReportRangef(expr, fmt.Sprintf("mismatched type in call to (*testing.F).Add: %v, fuzz target expects %v", t, params.At(i+1).Type()))
    			} else if len(mismatched) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        /**
         * Add the specified range to this builder. Adjacent ranges are permitted and will be merged,
         * but overlapping ranges will cause an exception when {@link #build()} is called.
         *
         * @throws IllegalArgumentException if {@code range} is empty
         */
        @CanIgnoreReturnValue
        public Builder<C> add(Range<C> range) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

            // An unknown side effect dominates other side effects so we don't have
            // to add them and can return here.
            return;
          }
          // Add op-based side effects from regions (if any).
          for (Region& region : op->getRegions()) {
            AddRegionSideEffectsForOp(region, op);
          }
          // Add op-based side effects for the op itself.
          for (const auto& effect : effects) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

        const bool enable_per_channel_quantized_weight) {
      patterns.add<XlaCallModuleOpToCallOp<QuantizeConvolutionOpPattern>>(
          ctx, enable_per_channel_quantized_weight);
      patterns.add<XlaCallModuleOpToCallOp<QuantizeDotGeneralOpPattern>>(
          ctx, enable_per_channel_quantized_weight);
      patterns
          .add<XlaCallModuleOpToCallOp<QuantizeWeightOnlyOpPattern<ConvolutionOp>>>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/cidrallocator.go

    	if err == nil {
    		c.queue.Add(key)
    	}
    }
    func (c *MetaAllocator) updateServiceCIDR(old, new interface{}) {
    	key, err := cache.MetaNamespaceKeyFunc(new)
    	if err == nil {
    		c.queue.Add(key)
    	}
    }
    
    func (c *MetaAllocator) deleteServiceCIDR(obj interface{}) {
    	key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
    	if err == nil {
    		c.queue.Add(key)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top