Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,685 for checkSeq (0.17 sec)

  1. pkg/test/framework/components/echo/check/visitor.go

    func (v Visitor) Or(o Visitor) Visitor {
    	return func(r echoClient.Response) error {
    		if err := v(r); err != nil {
    			return err
    		}
    		return o(r)
    	}
    }
    
    // Checker returns an echo.Checker based on this Visitor.
    func (v Visitor) Checker() echo.Checker {
    	return func(result echo.CallResult, _ error) error {
    		rs := result.Responses
    		if rs.IsEmpty() {
    			return fmt.Errorf("no responses received")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 28 23:06:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. tensorflow/c/kernels/histogram_summary_op.cc

        TF_KernelBuilder_TypeConstraint(
            builder, "T",
            static_cast<TF_DataType>(tensorflow::DataTypeToEnum<T>::v()), status);
        CHECK_EQ(TF_OK, TF_GetCode(status)) << "Error while adding type constraint";
        TF_RegisterKernelBuilder("HistogramSummary", builder, status);
        CHECK_EQ(TF_OK, TF_GetCode(status))
            << "Error while registering Histogram Summmary kernel";
      }
      TF_DeleteStatus(status);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                    if (referenceSelector != null) {
                        Element(PropertyAccess(checked(receiver!!), checked(referenceSelector!!), referenceSourceData!!))
                    } else {
                        val functionCall = checked(functionCallSelector!!)
                        Element(FunctionCall(checked(receiver!!), functionCall.name, functionCall.args, functionCall.sourceData))
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_predicates.go

    //     as a type constraint in Go code
    //   - if T is an uninstantiated generic type
    func AssertableTo(V *Interface, T Type) bool {
    	// Checker.newAssertableTo suppresses errors for invalid types, so we need special
    	// handling here.
    	if !isValid(T.Underlying()) {
    		return false
    	}
    	return (*Checker)(nil).newAssertableTo(nopos, V, T, nil)
    }
    
    // AssignableTo reports whether a value of type V is assignable to a variable
    // of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    	if err != nil {
    		for _, checker := range w.checkers {
    			if checker.CheckRoundTripError(err) {
    				checker.IncreaseMetricsCounter(req)
    			}
    		}
    	} else if resp != nil {
    		if resp.TLS != nil && len(resp.TLS.PeerCertificates) > 0 {
    			for _, checker := range w.checkers {
    				if checker.CheckPeerCertificates(resp.TLS.PeerCertificates) {
    					checker.IncreaseMetricsCounter(req)
    				}
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/while_gradients.cc

                                const Output& backprop_execution_pred,
                                const Scope& parent_scope,
                                std::vector<Output>* grad_outputs) {
      DCHECK_EQ(grad_inputs.size(), while_ctx->body_outputs().size());
      DCHECK_EQ(while_ctx->body_inputs().size(), while_ctx->body_outputs().size());
    
      Scope scope = parent_scope.NewSubScope("while");
    
      // Create while loop:
      //   while backprop_execution_pred:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/RegularImmutableSortedSet.java

    import java.util.Iterator;
    import java.util.NoSuchElementException;
    import java.util.Set;
    import java.util.Spliterator;
    import java.util.function.Consumer;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An immutable sorted set with one or more elements. TODO(jlevy): Consider separate class for a
     * single-element sorted set.
     *
     * @author Jared Levy
     * @author Louis Wasserman
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. tests/update_has_one_test.go

    		}
    
    		var pet2 Pet
    		DB.Preload("Toy").Find(&pet2, "id = ?", pet.ID)
    		CheckPet(t, pet2, pet)
    
    		pet.Toy.Name += "new"
    		if err := DB.Save(&pet).Error; err != nil {
    			t.Fatalf("errors happened when update: %v", err)
    		}
    
    		var pet3 Pet
    		DB.Preload("Toy").Find(&pet3, "id = ?", pet.ID)
    		CheckPet(t, pet2, pet3)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jul 14 06:55:54 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. src/go/types/api_predicates.go

    //     as a type constraint in Go code
    //   - if T is an uninstantiated generic type
    func AssertableTo(V *Interface, T Type) bool {
    	// Checker.newAssertableTo suppresses errors for invalid types, so we need special
    	// handling here.
    	if !isValid(T.Underlying()) {
    		return false
    	}
    	return (*Checker)(nil).newAssertableTo(nopos, V, T, nil)
    }
    
    // AssignableTo reports whether a value of type V is assignable to a variable
    // of type T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Static methods used to implement {@link Futures#getChecked(Future, Class)}. */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    final class FuturesGetChecked {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top