Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 578 for marking (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/mangling_util.h

    namespace tensorflow {
    namespace mangling_util {
    // The type of a mangled string.
    enum class MangledKind { kUnknown, kDataType, kTensorShape, kTensor };
    
    // Mangles an attribute name, marking the attribute as a TensorFlow attribute.
    string MangleAttributeName(absl::string_view str);
    
    // Returns true if 'str' was mangled with MangleAttributeName.
    bool IsMangledAttributeName(absl::string_view str);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 28 22:08:30 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/help.go

    	Long: `
    A module version is defined by a tree of source files, with a go.mod
    file in its root. When the go command is run, it looks in the current
    directory and then successive parent directories to find the go.mod
    marking the root of the main (current) module.
    
    The go.mod file format is described in detail at
    https://golang.org/ref/mod#go-mod-file.
    
    To create a new go.mod file, use 'go mod init'. For details see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

                releasedVersionsFile()
            )
        }
    
        return versionNumber
    }
    
    /**
     * Returns the trimmed contents of the file at the given [path] after
     * marking the file as a build logic input.
     */
    fun Project.trimmedContentsOfFile(path: String): String =
        providers.fileContents(repoRoot().file(path)).asText.get().trim()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables_linux.go

    	if cfg.EnableIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    		// Adds in-pod rules for marking packets with the istio-specific TPROXY mark.
    		// A very similar mechanism is used for sidecar TPROXY.
    		//
    		// TODO largely identical/copied from tools/istio-iptables/pkg/capture/run_linux.go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. .github/PULL_REQUEST_TEMPLATE.md

    5. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests
    -->
    
    #### What type of PR is this?
    
    <!--
    Add one of the following kinds:
    /kind bug
    /kind cleanup
    /kind documentation
    /kind feature
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. hack/update-translations.sh

      case ${opt} in
        h)
          echo "$0 [-f files] [-x] [-k] [-g]"
          echo " -f <file-path>: Files to process"
          echo " -x extract strings to a POT file"
          echo " -k fix .po files; deprecate translations by marking them obsolete and supply default messages"
          echo " -g sort .po files and generate .mo files"
          exit 0
          ;;
        f)
          KUBECTL_FILES+=("${OPTARG}")
          ;;
        x)
          generate_pot="true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. src/runtime/mfixalloc.go

    // contains heap pointers.
    //
    // The caller is responsible for locking around FixAlloc calls.
    // Callers can keep state in the object but the first word is
    // smashed by freeing and reallocating.
    //
    // Consider marking fixalloc'd types not in heap by embedding
    // runtime/internal/sys.NotInHeap.
    type fixalloc struct {
    	size   uintptr
    	first  func(arg, p unsafe.Pointer) // called first time p is returned
    	arg    unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 24 20:28:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

     * and a future role which will replace it in the next major Gradle version. These roles represent a narrowing migration
     * from one role to another by marking usages which are present in the current role but not present in the eventual role
     * as deprecated.
     *
     * <p>The roles here are all meant to be temporary roles used for migration only, to be removed in Gradle 9.0.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. pkg/util/filesystem/util_windows.go

    		})
    
    	// PollImmediate will return "timed out waiting for the condition" if the function it
    	// invokes never returns true
    	if err != nil {
    		klog.V(2).InfoS("Failed all attempts to dial the socket so marking it as a non-Unix Domain socket. Last socket error along with the error from PollImmediate follow",
    			"filePath", filePath, "lastSocketErr", lastSocketErr, "err", err)
    		return false, nil
    	}
    	return true, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compilation_profiler.cc

      // observed to be megamorphic once stay megamorphic forever.
      if (!stats->is_megamorphic &&
          ShouldBeMegamorphic(stats->compile_count, stats->execution_count)) {
        VLOG(1) << "Marking " << function.name()
                << " as megamorphic, compile_count=" << stats->compile_count
                << " execution_count=" << stats->execution_count;
        stats->is_megamorphic = true;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top