Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for equivalently (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    configurations.compileClasspath.files // equivalent to configurations.compileClasspath.get().files
    configurations.compileClasspath.singleFile // equivalent to configurations.compileClasspath.get().singleFile
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```kotlin
    plugins {
        `gradle-enterprise`
    }
    ```
    
    There is no equivalent to this in `settings.gradle` (Groovy DSL).
    
    Gradle Enterprise has been renamed to Develocity and the `com.gradle.enterprise` plugin has been renamed to `com.gradle.develocity`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          # considered to be TF raw ops.
          # TODO(fengliuai): refine the condition that we only match TensorFlow
          # ops here.
          return {TFRTypes.TF_RAW_OP}
        # TODO(mdan): Is ATTR equivalent to string?
        return {_PY_TYPE_TO_TFR.get(type(value), TFRTypes.ATTR)}
    
      def res_call(self, ns, types_ns, node, f_type, args, keywords):
        # resolves the return type of the function call.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

            i = pathSegmentDelimiterOffset
            if (segmentHasTrailingSlash) i++
          }
        }
    
        /** Adds a path segment. If the input is ".." or equivalent, this pops a path segment. */
        private fun push(
          input: String,
          pos: Int,
          limit: Int,
          addTrailingSlash: Boolean,
          alreadyEncoded: Boolean,
        ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    			b.ReplaceControl(i, s.allocValToReg(v, s.compatRegs(v.Type), false, b.Pos))
    		}
    
    		// Reduce the uses of the control values once registers have been loaded.
    		// This loop is equivalent to the advanceUses method.
    		for _, v := range controls {
    			vi := &s.values[v.ID]
    			if !vi.needReg {
    				continue
    			}
    			// Remove this use from the uses list.
    			u := vi.uses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    			if !ok {
    				if got.d.Dec == nil && got.i.scale >= 0 {
    					t.Errorf("%v: is an int64Amount, but can't return AsInt64: %v", item.input, got)
    				}
    				continue
    			}
    			if i != j {
    				t.Errorf("%v: expected equivalent representation as int64: %d %d", item.input, i, j)
    			}
    		}
    
    		for _, item := range table {
    			got, err := ParseQuantity(item.input)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    //
    //     1. Pseudo-instructions do not always map to a single machine instruction when
    //        using the SB 'register' to address data. This is because many machine
    //        instructions do not have relative long (RL suffix) equivalents. For example,
    //        ADDload, which is assembled as AG.
    //
    //     2. Loads and stores using relative addressing require the data be aligned
    //        according to its size (8-bytes for double words, 4-bytes for words
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. src/time/format.go

    }
    
    func cutspace(s string) string {
    	for len(s) > 0 && s[0] == ' ' {
    		s = s[1:]
    	}
    	return s
    }
    
    // skip removes the given prefix from value,
    // treating runs of space characters as equivalent.
    func skip(value, prefix string) (string, error) {
    	for len(prefix) > 0 {
    		if prefix[0] == ' ' {
    			if len(value) > 0 && value[0] != ' ' {
    				return value, errBad
    			}
    			prefix = cutspace(prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
Back to top