Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 363 for fdct (0.09 sec)

  1. tensorflow/c/experimental/saved_model/core/revived_types/partially_revived_objects.cc

        }
        result[key] = &value.tensor_spec_value();
      }
      *out = SignatureDefParamsFromNamedParamMap(result);
    
      return Status();
    }
    
    // The implementation takes advantage of the fact that SignatureDefFunction's
    // "traced" Signature wrapper function always has inputs/outputs of dictionaries
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 20:11:48 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

         */
        public Map<T, String> deduplicate(Iterable<? extends T> elements) {
            return new StatefulDeduplicator(elements).getNewNames();
        }
    
        /*
         * This inner class hides the fact that the actual de-duplication algorithm is stateful.
         */
        private class StatefulDeduplicator {
    
            private final List<T> elements;
            private final Multimap<String, T> elementsByName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/UnsignedLongs.java

        }
    
        /*
         * Otherwise, approximate the quotient, check, and correct if necessary. Our approximation is
         * guaranteed to be either exact or one less than the correct value. This follows from fact that
         * floor(floor(x)/i) == floor(x/i) for any real x and integer i != 0. The proof is not quite
         * trivial.
         */
        long quotient = ((dividend >>> 1) / divisor) << 1;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    	// check that each result is in fact a correct match and there are no duplicates
    	slices.Sort(res)
    	for i, r := range res {
    		if r < 0 || len(tc.source) <= r {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                sudo prlimit -p "${pid}" --core=unlimited
              }
              # To support image builders which cannot do RUN, do the run commands at startup.
              # This exploits the fact the images remove the installer once its installed.
              # This is a horrible idea for production images, but these are just for tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. test/escape5.go

    }
    
    func leakrecursive2(p, q *int) (*int, *int) { // ERROR "leaking param: p" "leaking param: q"
    	if *p > *q {
    		return leakrecursive1(q, p)
    	}
    	// without this, leakrecursive? are safe for p and q, b/c in fact their graph does not have leaking edges.
    	return p, q
    }
    
    var global interface{}
    
    type T1 struct {
    	X *int
    }
    
    type T2 struct {
    	Y *T1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    ====
    
    As is, it's pretty hard to figure out that you will end up with two logging frameworks on the classpath.
    In fact, `zookeeper` will bring in `log4j`, where what we want to use is `log4j-over-slf4j`.
    We can preemptively detect the conflict by adding a rule which will declare that both logging frameworks provide the same capability:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/image/jpeg/reader.go

    	ri    int // Restart Interval.
    	nComp int
    
    	// As per section 4.5, there are four modes of operation (selected by the
    	// SOF? markers): sequential DCT, progressive DCT, lossless and
    	// hierarchical, although this implementation does not support the latter
    	// two non-DCT modes. Sequential DCT is further split into baseline and
    	// extended, as per section 4.11.
    	baseline    bool
    	progressive bool
    
    	jfif                bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  9. src/sync/mutex_test.go

    	// To achieve this we create excess of goroutines most of which do local work.
    	// These goroutines yield during local work, so that switching from
    	// a blocked goroutine to other goroutines is profitable.
    	// As a matter of fact, this benchmark still triggers some spinning in the mutex.
    	var m Mutex
    	var acc0, acc1 uint64
    	b.SetParallelism(4)
    	b.RunParallel(func(pb *testing.PB) {
    		c := make(chan bool)
    		var data [4 << 10]uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 16 21:25:35 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * To guarantee that the transitive dependency is excluded from the entire configuration
         * please use per-configuration exclude rules: {@link Configuration#getExcludeRules()}.
         * In fact, in majority of cases the actual intention of configuring per-dependency exclusions
         * is really excluding a dependency from the entire configuration (or classpath).
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top