Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 6,499 for happen (0.23 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/compute_cost.cc

    // within the FuncOp. (Excluding const ops since they're just "data".)
    // We will ignore quant/dequant/requant costs within the Func Op as well,
    // intuition:
    //
    // The assumpution is that quant/dequant/requant will only happen at the begin
    // and the end of the FuncOp (basically the "boundaries" of the subgraph).
    // So we can imagine if multiple "same-inference-typed" graph are presented at
    // the same time, the quant/dequant ops pair can be squashed:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # This test checks that cached corpus loading properly handles duplicate entries (this can
    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationAction.java

    public interface ValidationAction {
        /**
         * Validates the given property value according to some rule.
         *
         * @param propertyName
         * @param value a supplier of a non-null value - side effects are guaranteed to happen only once
         * @param context
         */
        void validate(String propertyName, @Nonnull Supplier<Object> value, PropertyValidationContext context);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:05:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Exceptions.kt

        )
    
    
    internal
    fun internalError(): Nothing =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/01-pkgsite.yml

        validations:
          required: true
      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: "What did you expect to see?"
        validations:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/localize_var_handles.cc

        return;  // We're already directly after a VarHandleOp.
      }
    
      const TF::ResourceDataflowState* state =
          solver.lookupState<TF::ResourceDataflowState>(resource);
      if (!state) {
        // Can't actually happen. Even for gaps in the dataflow, we'll receive
        // the initial state.
        return;
      }
      auto ops = state->getValue().ops;
      if (ops.size() != 1) {
        return;
      }
      Operation* source = *ops.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/reset/removeetcdmember.go

    			} else {
    				fmt.Println("[reset] Would remove the etcd member on this node from the etcd cluster")
    				fmt.Printf("[reset] Would delete contents of the etcd data directory: %v\n", etcdDataDir)
    			}
    		}
    		// This could happen if the phase `cleanup-node` is run before the `remove-etcd-member`.
    		// Cleanup the data in the etcd data dir to avoid some stale files which might cause the failure to build cluster in the next time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ProjectParallelExecutionController.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface ProjectParallelExecutionController {
        /**
         * Indicate that project execution may happen.
         *
         * <p>Note: this must be called prior to any projects being created for a build tree.</p>
         */
        void startProjectExecution(boolean parallel);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime_unix.go

    import (
    	"net"
    	"net/url"
    )
    
    // isExistingSocket checks if path exists and is domain socket
    func isExistingSocket(path string) bool {
    	u, err := url.Parse(path)
    	if err != nil {
    		// should not happen, since we are trying to access known / hardcoded sockets
    		return false
    	}
    
    	c, err := net.Dial(u.Scheme, u.Path)
    	if err != nil {
    		return false
    	}
    	defer c.Close()
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1011 bytes
    - Viewed (0)
Back to top