Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 515 for corerest (0.25 sec)

  1. cni/pkg/ipset/ipset.go

    // superset of type `list:set` - we can then query the superset directly in iptables (with the same rule),
    // and iptables will be smart enough to pick the correct underlying set (v4 or v6, based on context),
    // reducing the # of rules we need.
    //
    // BUT netlink lib doesn't support adding things to `list:set` types yet, and current tagged release
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/BUILD

    )
    
    tf_cc_test(
        name = "tf_mlir_translate_registration_test",
        size = "small",
        srcs = ["tf_mlir_translate_registration_test.cc"],
        deps = [
            ":translate_registration",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:TranslateLib",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/value.h

        return v;
      }
      /// Destroys TaggedValue. Shared pointers in unions must be explicitly
      /// deleted.
      void destroy() {
        if (type_ != NONE) {
          // Explicitly run the destructor on the correct type.
          visit<void>([](auto& x) {
            using T = typename std::decay<decltype(x)>::type;
            x.~T();
          });
          // Make the type None, whenever we destroy so we always have an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/DeclarativeDslProjectSettingsIntegrationSpec.groovy

            'pluginManagement' | 'pluginManagement { }\nplugins { }\nrootProject.name = "foo"\npluginManagement { }' | "4:1: duplicate 'pluginManagement'"
        }
    
        def 'supports correct order of blocks in setttings file if there is #order'() {
            given:
            file("settings.gradle.dcl") << content
    
            expect:
            succeeds(":projects")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:21:50 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. release/downloadIstioCtl.sh

        ;;
      *)
        echo "This system's architecture, ${LOCAL_ARCH}, isn't supported"
        exit 1
        ;;
    esac
    
    download_failed () {
      printf "Download failed, please make sure your ISTIO_VERSION is correct and verify the download URL exists!"
      exit 1
    }
    
    # Downloads the istioctl binary archive.
    tmp=$(mktemp -d /tmp/istioctl.XXXXXX)
    NAME="istioctl-${ISTIO_VERSION}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

          fileSystem.sink(outputFile).gzip().buffer().use { sink ->
            importResults.writeOut(sink)
          }
        }
    
      /**
       * These assertions ensure the [PublicSuffixDatabase] remains correct. The specification is
       * very flexible regarding wildcard rules, but this flexibility is not something currently used
       * in practice. To simplify the implementation, we've avoided implementing the flexible rules in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. cmd/metacache-walk.go

    				pop := dirStack[len(dirStack)-1]
    				select {
    				case <-ctx.Done():
    					return ctx.Err()
    				case out <- metaCacheEntry{name: pop}:
    				}
    				if opts.Recursive {
    					// Scan folder we found. Should be in correct sort order where we are.
    					err := scanDir(pop)
    					if err != nil && !IsErrIgnored(err, context.Canceled) {
    						internalLogIf(ctx, err)
    					}
    				}
    				dirStack = dirStack[:len(dirStack)-1]
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/utils.go

    //   - value indicating either none missed schedules, a few missed or many missed
    //   - error in an edge case where the schedule specification is grammatically correct,
    //     but logically doesn't make sense (31st day for months with only 30 days, for example).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

                }
                ?.value?.let(RuntimeFunctionResolver.Resolution::Resolved)
                ?: RuntimeFunctionResolver.Resolution.Unresolved
        }
    
        /**
         * Gradle decoration does not generate correct Kotlin metadata for decorated Kotlin types.
         * Because of that, decorated types do not appear as subtypes of the original types when inspected with Kotlin reflection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

    import java.util.Queue;
    import java.util.Set;
    
    import static org.gradle.util.internal.ArrayUtils.contains;
    import static org.gradle.util.internal.CollectionUtils.join;
    
    /**
     * Checks that services are being declared in the correct scope.
     * <p>
     * Only services that are annotated with {@link ServiceScope} are validated.
     */
    @NonNullApi
    class ServiceScopeValidator implements AnnotatedServiceLifecycleHandler {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top