Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 203 for vols (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    == Available mechanisms
    
    Gradle provides multiple mechanisms for configuring the behavior of Gradle itself and specific projects:
    
    [cols="~,~,~"]
    |===
    |Mechanism |Information |Example
    
    |<<command_line_interface#command_line_interface,Command line interface>>
    |Flags that configure build behavior and Gradle features
    |`--rerun`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_unified_experimental_test.cc

      int64_t dims[] = {2, 2};  // Matrices will be 2 x 2
      int num_dims = sizeof(dims) / sizeof(dims[0]);
    
      float vals[] = {0.0f, 0.0f, 0.0f, 0.0f};
      TFE_Context* eager_ctx = TF_ExecutionContextGetTFEContext(ctx, status.get());
      TFE_TensorHandle* t =
          TestMatrixTensorHandleWithInput(eager_ctx, vals, dims, num_dims);
    
      TF_AbstractTensor* at = TF_CreateAbstractTensorFromEagerTensor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 21:44:52 UTC 2023
    - 39.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [[sec:dependency_management]]
    == Dependency management
    The JaCoCo Report Aggregation plugin adds the following dependency configurations:
    
    .JaCoCo Report Aggregation plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `jacocoAggregation`
    | The configuration used to declare all project dependencies having code coverage data to be aggregated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. internal/config/config.go

    func Error[T ErrorConfig, PT interface {
    	*T
    	setMsg(string)
    }](format string, vals ...interface{},
    ) T {
    	pt := PT(new(T))
    	pt.setMsg(fmt.Sprintf(format, vals...))
    	return *pt
    }
    
    // Errorf formats an error and returns it as a generic config error
    func Errorf(format string, vals ...interface{}) ErrConfigGeneric {
    	return Error[ErrConfigGeneric](format, vals...)
    }
    
    // Default keys
    const (
    	Default = madmin.Default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

        /**
         * Sets the level and returns this.
         *
         * This was deprecated in OkHttp 4.0 in favor of the [level] val. In OkHttp 4.3 it is
         * un-deprecated because Java callers can't chain when assigning Kotlin vals. (The getter remains
         * deprecated).
         */
        fun setLevel(level: Level) =
          apply {
            this.level = level
          }
    
        @JvmName("-deprecated_level")
        @Deprecated(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  6. src/strings/strings_test.go

    			}
    		})
    	}
    }
    
    func BenchmarkJoin(b *testing.B) {
    	vals := []string{"red", "yellow", "pink", "green", "purple", "orange", "blue"}
    	for l := 0; l <= len(vals); l++ {
    		b.Run(strconv.Itoa(l), func(b *testing.B) {
    			b.ReportAllocs()
    			vals := vals[:l]
    			for i := 0; i < b.N; i++ {
    				Join(vals, " and ")
    			}
    		})
    	}
    }
    
    func BenchmarkTrimSpace(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/build.go

    	}
    }
    
    // A commaListFlag is a flag.Value representing a comma-separated list.
    type commaListFlag struct{ Vals *[]string }
    
    func (f commaListFlag) String() string { return strings.Join(*f.Vals, ",") }
    
    func (f commaListFlag) Set(value string) error {
    	if value == "" {
    		*f.Vals = nil
    	} else {
    		*f.Vals = strings.Split(value, ",")
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. docs/changelogs/upgrading_to_okhttp_4.md

    in a future release! If you’re skipping releases, it’ll be much easier if you upgrade to OkHttp 4.0
    as an intermediate step.
    
    #### Vars and Vals
    
    Java doesn’t have language support for properties so developers make do with getters and setters.
    Kotlin does have properties and we take advantage of them in OkHttp.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/poset.go

    			if val, ok := consts[i]; ok {
    				// Constant
    				var vals string
    				if po.flags&posetFlagUnsigned != 0 {
    					vals = fmt.Sprint(uint64(val))
    				} else {
    					vals = fmt.Sprint(int64(val))
    				}
    				fmt.Fprintf(f, "\t\tnode%d [shape=box style=filled fillcolor=cadetblue1 label=<%s <font point-size=\"6\">%s [%d]</font>>]\n",
    					i, vals, names[i], i)
    			} else {
    				// Normal SSA value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    }
    ----
    =====
    ====
    
    [[sec:task_configuration_avoidance_backward_compatibility_migration]]
    
    [[sec:old_vs_new_configuration_api_overview]]
    == Lazy APIs to use
    
    [cols="a,a", options="header"]
    |===
    | API
    | Note
    
    | link:{javadocPath}/org/gradle/api/tasks/TaskContainer.html#register-java.lang.String-[TaskContainer.register()]
    | Returns a `TaskProvider` instead of a `Task`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top