Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for Builders (0.21 sec)

  1. .teamcity/test-buckets.json

    				"subprojects":[
    					"testing-jvm",
    					"worker-main",
    					"files",
    					"stdlib-java-extensions",
    					"build-cache-packaging",
    					"build-operations",
    					"precondition-tester",
    					"tooling-api-builders",
    					"hashing",
    					"base-services-groovy",
    					"kotlin-dsl-provider-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    			"Special exception: if the string begins with '!', the match is inverted.")
    	flag.BoolVar(&t.msan, "msan", false, "run in memory sanitizer builder mode")
    	flag.BoolVar(&t.asan, "asan", false, "run in address sanitizer builder mode")
    	flag.BoolVar(&t.json, "json", false, "report test results in JSON")
    
    	xflagparse(-1) // any number of args
    	if noRebuild {
    		t.rebuild = false
    	}
    
    	t.run()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    request.setDegreeOfConcurrency(degreeOfConcurrency);
                }
            }
    
            //
            // Allow the builder to be overridden by the user if requested. The builders are now pluggable.
            //
            request.setBuilderId(commandLine.getOptionValue(CLIManager.BUILDER, request.getBuilderId()));
    
            return request;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final String[] hosts =
                    split(host, ",").get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).toArray(n -> new String[n]));
            final Builder builder = Settings.builder().putList("http.hosts", hosts).put("processors", fessConfig.availableProcessors())
                    .put("http.heartbeat_interval", fessConfig.getFesenHeartbeatInterval());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let arguments = (ins
        ElementsAttr:$value
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value)>,
        OpBuilder<(ins "Type":$type, "Attribute":$value)>,
      ];
    
      let hasFolder = 1;
    
      let extraClassDeclaration = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    		}
    	}()
    
    	// Disable on affected builders to avoid flakiness, but otherwise keep
    	// it enabled to potentially warn users that they are on a broken
    	// kernel.
    	if testenv.Builder() != "" && (runtime.GOARCH == "386" || runtime.GOARCH == "amd64") {
    		have59 := major > 5 || (major == 5 && minor >= 9)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        }
        auto else_attr =
            mlir::SymbolRefAttr::get(builder.getContext(), func_names.at(else_idx));
    
        return llvm::SmallVector<mlir::NamedAttribute, 4>{
            builder.getNamedAttr("then_branch", then_attr),
            builder.getNamedAttr("else_branch", else_attr),
            // TODO(b/139667752): Analyze statelessness correctly
            builder.getNamedAttr("is_stateless", builder.getBoolAttr(false))};
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (device_ordinal)
        return ApplyXlaHostTransferAttr(
            builder.create<mlir::TF::_XlaSendFromHostV2Op>(
                loc, inputs,
                /*dynamic_key=*/compilation_key, device_ordinal,
                builder.getStringAttr(communication_key), device_type_attr),
            builder);
    
      return ApplyXlaHostTransferAttr(
          builder.create<mlir::TF::_XlaSendFromHostOp>(
              loc, inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

          if (read_type != last_store.getValue().getType()) {
            OpBuilder builder(last_store);
            builder.setInsertionPointAfter(last_store);
            auto cast = builder.create<TF::CastOp>(
                last_store.getLoc(), read_type, last_store.getValue(),
                /*Truncate=*/builder.getBoolAttr(false));
            read_variable_op.getValue().replaceAllUsesWith(cast);
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       * resulting URL is not well-formed.
       */
      fun resolve(link: String): HttpUrl? = newBuilder(link)?.build()
    
      /**
       * Returns a builder based on this URL.
       */
      fun newBuilder(): Builder {
        val result = Builder()
        result.scheme = scheme
        result.encodedUsername = encodedUsername
        result.encodedPassword = encodedPassword
        result.host = host
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top