Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,777 for whereas (0.1 sec)

  1. tensorflow/compiler/jit/device_util.h

    // operations placed in devices in `devices`.  For instance a cluster that
    // contains operations solely placed on the CPU will be compiled into a CPU
    // executable by XLA, whereas a cluster that contains operations placed on the
    // CPU and also operations placed on the GPU will be compiled into a GPU
    // executable.
    //
    // Returns a non-OK Status if no unambiguous choice of device exists.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/reflect/makefunc.go

    	regPtrs abi.IntArgRegBitmap
    }
    
    // moveMakeFuncArgPtrs uses ctxt.regPtrs to copy integer pointer arguments
    // in args.Ints to args.Ptrs where the GC can see them.
    //
    // This is similar to what reflectcallmove does in the runtime, except
    // that happens on the return path, whereas this happens on the call path.
    //
    // nosplit because pointers are being held in uintptr slots in args, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

                                Calico-controlled \tendpoints that do have the label “my_label”.
                                \n The effect is that the latter will accept packets from
                                non-Calico sources whereas the former is limited to packets
                                from Calico-controlled endpoints."
                              type: string
                            serviceAccounts:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/convert_tf_control_flow_to_scf.cc

                                                    scf_yield_input);
        };
    
        Location loc = op.getLoc();
    
        // The condition of an `scf.if` op is a 1-bit signless integer. Whereas, the
        // condition of the `tf.IfRegion` op is a 0-D tensor of 1-bit signless
        // integers. Thus, we use the `tensor.extract` op to compute the condition
        // of `scf.if` from that of `tf.IfRegion`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

      }
    
      private static final int ENDPOINT = -2;
    
      /**
       * Contains the link pointers corresponding with the entries, in the range of [0, size()). The
       * high 32 bits of each long is the "prev" pointer, whereas the low 32 bits is the "succ" pointer
       * (pointing to the next entry in the linked list). The pointers in [size(), entries.length) are
       * all "null" (UNSET).
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * Groovy strings can be quoted with single quotes `'string'` or double quotes `"string"` whereas Kotlin requires double quotes `"string"`.
    * Groovy allows to omit parentheses when invoking functions whereas Kotlin always requires the parentheses.
    * The Gradle Groovy DSL allows to omit the `=` assignment operator when assigning properties whereas Kotlin always requires the assignment operator.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    The `api` configuration should be used to declare constraints and dependencies which should be used when compiling against the platform, whereas the `runtime` configuration should be used to declare constraints or dependencies which are visible at runtime.
    
    .Declaring API and runtime constraints
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    }
    
    // A termSet holds the normalized set of terms for a given type.
    //
    // The name termSet is intentionally distinct from 'type set': a type set is
    // all types that implement a type (and includes method restrictions), whereas
    // a term set just represents the structural restrictions on a type.
    type termSet struct {
    	complete bool
    	terms    termlist
    }
    
    func indentf(depth int, format string, args ...interface{}) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

                // to the version and need to test with various different version patterns.
                // We use an env variable because these are easy to set on daemon startup,
                // whereas system properties are scrubbed at daemon startup.
                String overrideVersion = System.getenv(VERSION_OVERRIDE_VAR);
                if (overrideVersion != null) {
                    version = overrideVersion;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. pkg/config/validation/virtualservice.go

    				}
    			}
    
    			// uri allows empty prefix match:
    			// https://github.com/envoyproxy/envoy/blob/v1.29.2/api/envoy/config/route/v3/route_components.proto#L560
    			// whereas scheme/method/authority does not:
    			// https://github.com/envoyproxy/envoy/blob/v1.29.2/api/envoy/type/matcher/string.proto#L38
    			errs = appendErrors(errs, validateStringMatchRegexp(match.GetUri(), "uri"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top