Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 401 for satisfies (0.55 sec)

  1. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

            params.print(llvm::errs());
          else
            llvm::errs() << "_";
          llvm::errs() << ",";
        }
        llvm::errs() << ")\n";
      });
    }
    
    // A heuristic to get quantization parameters satisfies the same scale
    // constraints:
    // - If there are immutable states,
    //   - use the single input, or,
    //   - use the single output, or,
    //   - use the first one in the collection,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   directory in PATH.
    //
    // TODO(******@****.***): make thread-safe death tests search the PATH.
    
    // Asserts that a given statement causes the program to exit, with an
    // integer exit status that satisfies predicate, and emitting error output
    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/syscall/syscall_plan9.go

    //
    //	_, _, err := syscall.Syscall(...)
    //	if errors.Is(err, fs.ErrNotExist) ...
    type ErrorString string
    
    func (e ErrorString) Error() string { return string(e) }
    
    // NewError converts s to an ErrorString, which satisfies the Error interface.
    func NewError(s string) error { return ErrorString(s) }
    
    func (e ErrorString) Is(target error) bool {
    	switch target {
    	case oserror.ErrPermission:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   directory in PATH.
    //
    // TODO(******@****.***): make thread-safe death tests search the PATH.
    
    // Asserts that a given statement causes the program to exit, with an
    // integer exit status that satisfies predicate, and emitting error output
    // that matches regex.
    # define ASSERT_EXIT(statement, predicate, regex) \
        GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/net/textproto/reader.go

    	}
    	if err != nil && multi && message != "" {
    		// replace one line error message with all lines (full message)
    		err = &Error{code, message}
    	}
    	return
    }
    
    // DotReader returns a new [Reader] that satisfies Reads using the
    // decoded text of a dot-encoded block read from r.
    // The returned Reader is only valid until the next call
    // to a method on r.
    //
    // Dot encoding is a common framing used for data blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    <3> Scripts for executing Gradle builds.
    
    If the `gradlew` or `gradlew.bat` files are already present in your project, *you do not need to install Gradle*.
    But you need to make sure your system <<installation#sec:prerequisites,satisfies Gradle's prerequisites>>.
    
    You can follow the steps in the <<upgrading_version_8.adoc#upgrading_version_8,Upgrading Gradle section>> if you want to update the Gradle version for your project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/kubernetesservice/controller_test.go

    					ClusterIP:       "1.2.3.4",
    					SessionAffinity: corev1.ServiceAffinityNone,
    					Type:            corev1.ServiceTypeClusterIP,
    				},
    			},
    		},
    		{
    			testName:    "service definition satisfies",
    			serviceName: "foo",
    			servicePorts: []corev1.ServicePort{
    				{Name: "foo", Port: 8080, Protocol: "TCP", TargetPort: intstr.FromInt32(8080)},
    			},
    			serviceType: corev1.ServiceTypeClusterIP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 10:41:06 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    }
    
    // UniversalDeserializer can convert any stored data recognized by this factory into a Go object that satisfies
    // runtime.Object. It does not perform conversion. It does not perform defaulting.
    func (f CodecFactory) UniversalDeserializer() runtime.Decoder {
    	return f.universal
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    // A triState is a boolean that knows whether
    // it has been set to either true or false.
    // It is used to identify whether a flag appears;
    // the standard boolean flag cannot
    // distinguish missing from unset.
    // It also satisfies flag.Value.
    type triState int
    
    const (
    	unset triState = iota
    	setTrue
    	setFalse
    )
    
    func triStateFlag(name string, value triState, usage string) *triState {
    	flag.Var(&value, name, usage)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    		}
    		// Prevent circular definitions. If 'pos' is within an assignment statement, do not
    		// allow any identifiers in that assignment statement to be selected. Otherwise,
    		// we could do the following, where 'x' satisfies the type of 'f0':
    		//
    		// x := fakeStruct{f0: x}
    		//
    		if assign, ok := n.(*ast.AssignStmt); ok && pos > assign.Pos() && pos <= assign.End() {
    			return false
    		}
    		if n.End() > pos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top