Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 96 for getCss (0.22 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

        }
    
        def "displays collections of scalar types in a human-readable format"() {
            given:
            buildFile << '''
    
    @Managed
    interface Container {
       List<String> getLabels()
       List<Integer> getIds()
       List<Double> getValues()
       void setValues(List<Double> values)
    }
    
    model {
        container(Container) {
            labels.add 'bug'
            labels.add 'blocker'
        }
    }
    '''
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

                return cCompiler;
            }
    
            @Input
            public String getCFlags() {
                return CFlags;
            }
    
            @Input
            public String getDns() {
                return dns;
            }
    
            @Input
            public String getURL() {
                return URL;
            }
    
            @Input
            public String getA() {
                return a;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  3. internal/config/config.go

    }
    
    // Target signifies an individual target
    type Target struct {
    	SubSystem string
    	KVS       KVS
    }
    
    // Targets sub-system targets
    type Targets []Target
    
    // GetKVS - get kvs from specific subsystem.
    func (c Config) GetKVS(s string, defaultKVS map[string]KVS) (Targets, error) {
    	if len(s) == 0 {
    		return nil, Errorf("input cannot be empty")
    	}
    	inputs := strings.Fields(s)
    	if len(inputs) > 1 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    		KubeContext: config.Context,
    	}
    	common.LogAndPrintf("\nFetching Istio control plane information from cluster.\n\n")
    	getFromCluster(content.GetK8sResources, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetCRs, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetEvents, params, clusterDir, &mandatoryWg)
    	getFromCluster(content.GetClusterInfo, params, clusterDir, &mandatoryWg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      // populates `op_side_effect_map_`.
      explicit OpSideEffectCollector(ModuleOp module) {
        symbol_table_collection_.getSymbolTable(module);
        for (auto func : module.getOps<func::FuncOp>()) {
          CollectOpSideEffects(func);
        }
      }
    
      // Returns op-based side effects by resource ID for `op`.
      const SideEffectsByResourceId& GetSideEffectsForOp(Operation* op) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

            op.getLoc(), /*resultType0=*/
            mlir::cast<TensorType>(op.getResult().getType())
                .clone(output_uniform_quantized_type),
            /*lhs=*/op.getLhs(), /*rhs=*/op.getRhs(),
            /*dot_dimension_numbers=*/op.getDotDimensionNumbers(),
            /*precision_config=*/op.getPrecisionConfigAttr());
    
        rewriter.replaceAllUsesWith(op.getResult(), new_dot_general_op.getResult());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_quantize.cc

            << ") as consumer - intentional?";
      });
    }
    
    bool PrepareQuantizePass::ContainsQuantizeOps(func::FuncOp func) {
      for (const auto& op : func.getOps()) {
        if (llvm::isa<quantfork::DequantizeCastOp>(op)) return true;
      }
      return false;
    }
    
    using PrepareQuantStats =
        quant::ConvertStatsToQDQs<quantfork::QuantizeCastOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

               quantization_method->has_weight_only_ptq();
      }
      return false;
    }
    
    SmallVector<func::FuncOp> GetSortedFunctions(ModuleOp module_op) {
      auto iterator_range = module_op.getOps<func::FuncOp>();
      SmallVector<func::FuncOp> func_ops(iterator_range.begin(),
                                         iterator_range.end());
      absl::c_sort(func_ops, [](func::FuncOp op1, func::FuncOp op2) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_port_get port_get "libc.so"
    //go:cgo_import_dynamic libc_port_getn port_getn "libc.so"
    //go:cgo_import_dynamic libc_putmsg putmsg "libc.so"
    //go:cgo_import_dynamic libc_getmsg getmsg "libc.so"
    
    //go:linkname procpipe libc_pipe
    //go:linkname procpipe2 libc_pipe2
    //go:linkname procgetsockname libc_getsockname
    //go:linkname procGetcwd libc_getcwd
    //go:linkname procgetgroups libc_getgroups
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

                ( (DfsReferralDataImpl) dr ).fixupDomain(req.getDomain());
            }
            if ( log.isDebugEnabled() ) {
                log.debug("Got referral " + dr);
            }
    
            getContext().getDfs().cache(getContext(), path, dr);
            throw new DfsReferral(dr);
        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top