Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,590 for cas6 (0.19 sec)

  1. src/internal/runtime/atomic/atomic_andor_generic.go

    	for {
    		old := *ptr
    		if Cas(ptr, old, old&val) {
    			return old
    		}
    	}
    }
    
    //go:nosplit
    func Or32(ptr *uint32, val uint32) uint32 {
    	for {
    		old := *ptr
    		if Cas(ptr, old, old|val) {
    			return old
    		}
    	}
    }
    
    //go:nosplit
    func And64(ptr *uint64, val uint64) uint64 {
    	for {
    		old := *ptr
    		if Cas64(ptr, old, old&val) {
    			return old
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 20:08:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

        @Override
        protected JUnit4Builder junit4Builder() {
            return new FallbackJUnit4Builder();
        }
    
        /**
         * Handles a weird case when there are duplicate JUint 4 jars on the classpath with differing
         * versions. Specifically, when one version is below 4.4 and one is above. This case can occur
         * when a user declares a JUnit dependency on the test classpath while Gradle also loads
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    		FilterFunc: func(obj interface{}) bool {
    			if cast, ok := obj.(*corev1.ConfigMap); ok {
    				return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    			}
    			if tombstone, ok := obj.(cache.DeletedFinalStateUnknown); ok {
    				if cast, ok := tombstone.Obj.(*corev1.ConfigMap); ok {
    					return cast.Name == c.configmapName && cast.Namespace == c.configmapNamespace
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            }
            break;
          }
          case ::tensorflow::AttrValue::kI:
            flex_builder->Int(key, attr.i());
            break;
          case ::tensorflow::AttrValue::kF:
            flex_builder->Float(key, attr.f());
            break;
          case ::tensorflow::AttrValue::kB:
            flex_builder->Bool(key, attr.b());
            break;
          case tensorflow::AttrValue::kList:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/Striped64.java

       * only become known via CAS failures, convergence can be slow,
       * and because threads are typically not bound to CPUS forever,
       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/gen/constFoldGen.go

    }
    
    // compute the result of i op j, cast as type t.
    func ansU(i, j uint64, t, op string) string {
    	var ans uint64
    	switch op {
    	case "+":
    		ans = i + j
    	case "-":
    		ans = i - j
    	case "*":
    		ans = i * j
    	case "/":
    		if j != 0 {
    			ans = i / j
    		}
    	case "%":
    		if j != 0 {
    			ans = i % j
    		}
    	case "<<":
    		ans = i << j
    	case ">>":
    		ans = i >> j
    	}
    	switch t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. src/internal/runtime/atomic/atomic_s390x.s

    TEXT ·Casint32(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    // func Casint64(ptr *int64, old, new int64) bool
    TEXT ·Casint64(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func Casuintptr(ptr *uintptr, old, new uintptr) bool
    TEXT ·Casuintptr(SB), NOSPLIT, $0-25
    	BR	·Cas64(SB)
    
    // func CasRel(ptr *uint32, old, new uint32) bool
    TEXT ·CasRel(SB), NOSPLIT, $0-17
    	BR	·Cas(SB)
    
    // func Loaduintptr(ptr *uintptr) uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider;
    
    import org.gradle.internal.Cast;
    import org.gradle.internal.UncheckedException;
    
    import javax.annotation.Nullable;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    import java.util.concurrent.Callable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        if (std::get<0>(res_it) != std::get<1>(res_it)) return std::nullopt;
    
      // There can only be non-truncating cast op's prior to the call.
      for (; it != block.rend(); ++it) {
        CastOp cast = dyn_cast<CastOp>(*it);
        if (!cast || cast.getTruncate()) return std::nullopt;
      }
    
      return call;
    }
    
    using ArgMatcherFn = function_ref<bool(Value, Region&, Value, Region&)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildScopeInMemoryCachingScriptClassCompiler.java

    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.Cast;
    
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * This in-memory cache is responsible for caching compiled build scripts during a build.
     * If the compiled script is not found in this cache, it will try to find it in the global cache,
     * which will use the delegate script class compiler in case of a miss. The lookup in this cache is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 16:35:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top