Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for infeasible (0.25 sec)

  1. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

            You can use [the template](https://github.com/gradle/gradle-issue-reproducer) with a Gradle GitHub action set up to showcase your problem.
            In the rare cases where this is infeasible, we will also accept a detailed set of instructions.
            You can also use [Gradle Project Replicator](https://github.com/android/project-replicator) to reproduce the structure of your project.
        validations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            You can use [the template](https://github.com/gradle/gradle-issue-reproducer) with a Gradle GitHub action set up to showcase your problem.
            In the rare cases where this is infeasible, we will also accept a detailed set of instructions.
            You can also use [Gradle Project Replicator](https://github.com/android/project-replicator) to reproduce the structure of your project.
        validations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/internal/poly1305/poly1305.go

    // Package poly1305 implements Poly1305 one-time message authentication code as
    // specified in https://cr.yp.to/mac/poly1305-20050329.pdf.
    //
    // Poly1305 is a fast, one-time authentication function. It is infeasible for an
    // attacker to generate an authenticator for a message without the key. However, a
    // key must only be used for a single message. Authenticating two different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

      // Whenever we see an operation that is assigned to an accelerator target
      // (ie. get_target(op) != ""), we try to merge it into the last cluster
      // of same target. If that is infeasible (say because of violating
      // def-before-use), create a new cluster with that operation and move on.
      llvm::StringMap<SmallVector<Cluster>> all_clusters;
      // Map from operation to the cluster that contains the operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    // which must be non-nil.
    //
    // The CFG builder calls mayReturn to determine whether a given function
    // call may return.  For example, calls to panic, os.Exit, and log.Fatal
    // do not return, so the builder can remove infeasible graph edges
    // following such calls.  The builder calls mayReturn only for a
    // CallExpr beneath an ExprStmt.
    func New(body *ast.BlockStmt, mayReturn func(*ast.CallExpr) bool) *CFG {
    	b := builder{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/internal/godebug/godebug.go

    // be reported by [runtime/metrics.Read]. The call must only happen when
    // the program executes a non-default behavior, not just when the setting
    // is set to a non-default value. This is occasionally (but very rarely)
    // infeasible, in which case the internal/godebugs table entry must set
    // Opaque: true, and the documentation in doc/godebug.md should
    // mention that metrics are unavailable.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. pkg/kube/krt/recomputetrigger.go

    // Typically, all state is registered and fetched through krt.Fetch. Through this mechanism, any changes are automatically
    // propagated through the system to dependencies.
    // In some cases, it may not be feasible to get all state into krt; hopefully, this is a temporary state.
    // RecomputeTrigger works around this by allowing an explicit call to recompute a collection; the caller must be sure to call Trigger()
    // any time the state changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_ambiguous_arg.txt

    go get m/p  # @latest
    go list -m all
    stdout '^m/p v0.3.0 '
    ! stdout '^m '
    
    cp go.mod.orig go.mod
    
    go get m/p@v0.1.0
    go list -m all
    stdout '^m/p v0.1.0 '
    ! stdout '^m '
    
    # When feasible, the argument 'm/p' in 'go get m/p' refers to *package* m/p,
    # which is in module m.
    #
    # (It only refers to *module* m/p if there is no such package at the
    # requested version.)
    
    go get m/p@v0.2.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. src/syscall/mksyscall_windows.go

    		cmdEnv = append(os.Environ(), "GO111MODULE=on")
    
    		// Force -mod=readonly instead of the default -mod=vendor.
    		//
    		// mkwinsyscall is not itself vendored into the standard library, and it is
    		// not feasible to do so at the moment: std-vendored libraries are included
    		// in the "std" meta-pattern (because in general they *are* linked into
    		// users binaries separately from the original import paths), and we can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/nowb.go

    			// (the outermost stack element) was found, by a static
    			// reachability analysis over the fully lowered optimized code,
    			// to call a function (fn) that involves a write barrier.
    			//
    			// Even if the call path is infeasable,
    			// you will need to reorganize the code to avoid it.
    			base.ErrorfAt(fn.WBPos, 0, "write barrier prohibited by caller; %v%s", fn.Nname, err.String())
    			continue
    		}
    
    		// Enqueue fn's calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top