Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for Shardz (0.18 sec)

  1. docs/en/data/github_sponsors.yml

      - login: DMantis
        avatarUrl: https://avatars.githubusercontent.com/u/9536869?v=4
        url: https://github.com/DMantis
      - login: hard-coders
        avatarUrl: https://avatars.githubusercontent.com/u/9651103?u=95db33927bbff1ed1c07efddeb97ac2ff33068ed&v=4
        url: https://github.com/hard-coders
      - login: supdann
        avatarUrl: https://avatars.githubusercontent.com/u/9986994?u=9671810f4ae9504c063227fee34fd47567ff6954&v=4
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertTrue(result.getFatals().get(2).contains("parent.version"));
        }
    
        @Test
        void testHardCodedSystemPath() throws Exception {
            SimpleProblemCollector result = validateRaw("hard-coded-system-path.xml");
    
            assertViolations(result, 0, 0, 3);
    
            assertContains(
                    result.getWarnings().get(0),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                return;
            }
    
            if (isConstraint) {
                // Need to double check that the target still has hard edges to it
                ModuleResolveState module = targetComponent.getModule();
                if (module.isPending()) {
                    selector.getTargetModule().removeUnattachedDependency(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/flags.cc

          Flag("tf_xla_sparse_core_stacking_table_shard_limit_bytes",
               &sparse_core_flags
                    ->tf_xla_sparse_core_stacking_table_shard_limit_bytes,
               "If non-zero, limits the size of any table shard to be below these"
               "many bytes.")};
      flag_list->insert(flag_list->end(), new_flags.begin(), new_flags.end());
    }
    
    void AllocateAndParseJitRtFlags() {
      jitrt_flags = new JitRtFlags;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. src/runtime/runtime.go

    const minTimeForTicksPerSecond = 5_000_000*(1-osHasLowResClockInt) + 100_000_000*osHasLowResClockInt
    
    // ticksPerSecond returns a conversion rate between the cputicks clock and the nanotime clock.
    //
    // Note: Clocks are hard. Using this as an actual conversion rate for timestamps is ill-advised
    // and should be avoided when possible. Use only for durations, where a tiny error term isn't going
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

                        Type.getMethodDescriptor(Type.getType(String.class)), null, null);
                    mv.visitCode();
                    // accommodate cases where the RHS of the String constant is a method, not a hard-coded String
                    mv.visitFieldInsn(Opcodes.GETSTATIC, className, constant.getValue(), Type.getDescriptor(String.class));
                    mv.visitInsn(Opcodes.ARETURN);
                    mv.visitMaxs(1, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

        // Load the MLIR module.
        source_mgr->AddNewSourceBuffer(std::move(*file_or_err), llvm::SMLoc());
        return mlir::parseSourceFile<mlir::ModuleOp>(*source_mgr, context);
      }
    
      // TODO(pulkitb): Remove hard-coded tag.
      std::unordered_set<std::string> tags({"serve"});
      std::vector<std::string> exported_names_in_vector =
          absl::StrSplit(exported_model_signatures, ',');
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

            }
        }
    
        private
        suspend fun WriteContext.encode(value: DefaultLocalFileDependencyBackedArtifactSet) {
            // TODO - When the set of files is fixed (eg `gradleApi()` or some hard-coded list of files):
            //   - calculate the attributes for each of the files eagerly rather than writing the mappings
            //   - when the selector would not apply a transform, then write only the files and nothing else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    		}
    
    		// Inspect statements to find function literals that may be run outside of
    		// the current loop iteration.
    		//
    		// For go, defer, and errgroup.Group.Go, we ignore all but the last
    		// statement, because it's hard to prove go isn't followed by wait, or
    		// defer by return. "Last" is defined recursively.
    		//
    		// TODO: consider allowing the "last" go/defer/Go statement to be followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		// so the passwd lookup doesn't need to succeed at all for Istio to function.
    		// Effectively, we want a mini-container. In fact, running in a real container would be ideal but it is hard to do portably.
    		// See https://github.com/istio/istio/issues/48416 for a real world example of this case.
    		if err := mount("/dev/null", "/etc/nsswitch.conf"); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top