Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for capturing (0.15 sec)

  1. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                        throw new InvalidUserDataException("Deployment descriptor file name must be a simple name but was " + descriptorFileName);
                    }
    
                    // TODO: Consider capturing the `descriptor` as a spec
                    //  so any captured manifest attribute providers are re-evaluated
                    //  on each run.
                    //  See https://github.com/gradle/configuration-cache/issues/168
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      for (auto* output : outputs->outputs) {
        auto* operand = dyn_cast<MlirTensor>(output);
        if (!operand)
          return InvalidArgument("Capturing eager tensors is not supported yet.");
        if (operand->getValue().getContext() != context_.get())
          return InvalidArgument(
              "Capturing tensors from other context is not supported.");
        ret_operands.push_back(operand->getValue());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    This error indicates that an unsupported type is annotated as nested.
    Nested types are expected to either declare some annotated properties (which themselves are checked for annotations) or some conditional behaviour where capturing the type itself as input is important.
    Types of the Java SE API, types of the Kotlin stdlib, and Groovy's GString are not supported, because they meet neither of those requirements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/inl_test.go

    	}
    
    	testenv.MustHaveGoBuild(t)
    
    	modes := []string{"-covermode=set", "-covermode=atomic"}
    
    	for _, mode := range modes {
    		// Build the Go runtime with "-m", capturing output.
    		args := []string{"build", "-gcflags=runtime=-m", "runtime"}
    		cmd := testenv.Command(t, testenv.GoToolPath(t), args...)
    		b, err := cmd.CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server.go

    		scheduler.WithBuildFrameworkCapturer(func(profile kubeschedulerconfig.KubeSchedulerProfile) {
    			// Profiles are processed during Framework instantiation to set default plugins and configurations. Capturing them for logging
    			completedProfiles = append(completedProfiles, profile)
    		}),
    	)
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pkg/log/config_test.go

    		if strings.Contains(line, "config_test.go") {
    			return
    		}
    	}
    
    	t.Error("Could not find stack trace info in output")
    }
    
    // Runs the given function while capturing everything sent to stdout
    func captureStdout(f func()) ([]string, error) {
    	tf, err := os.CreateTemp("", "log_test")
    	if err != nil {
    		return nil, err
    	}
    
    	old := os.Stdout
    	os.Stdout = tf
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

      // happens. But the thread's supposedly separate ClassLoader actually has a reference to the app's
      // ClasLoader via its AccessControlContext. It does not seem to be possible to make a
      // URLClassLoader without capturing this reference, and it probably would not be desirable for
      // security reasons anyway. Therefore, the FRQ.close() method provides a way to stop the thread
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/CrossBuildCachingRuleExecutor.java

            ImplicitInputsCapturingInstantiator instantiator = findInputCapturingInstantiator(action);
            if (instantiator != null) {
                action = action.withInstantiator(instantiator.capturing(registrar));
            }
            // First step is to find an entry with the explicit inputs in the cache
            CachedEntry<RESULT> entry = store.getIfPresent(keyHash);
            if (entry != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/informers.go

    			// it's not routable at this point and something is wrong/we should discard this event.
    			podIPs := util.GetPodIPsIfPresent(pod)
    			if len(podIPs) == 0 {
    				log.Warnf("pod %s does not appear to have any assigned IPs, not capturing", pod.Name)
    				return nil
    			}
    
    			err := s.dataplane.AddPodToMesh(s.ctx, pod, podIPs, "")
    			if err != nil {
    				log.Warnf("AddPodToMesh(%s) returned %v", newPod.Name, err)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/PairedStats.java

    import com.google.common.base.Objects;
    import java.io.Serializable;
    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    import javax.annotation.CheckForNull;
    
    /**
     * An immutable value object capturing some basic statistics about a collection of paired double
     * values (e.g. points on a plane). Build instances with {@link PairedStatsAccumulator#snapshot}.
     *
     * @author Pete Gillin
     * @since 20.0
     */
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top