Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for erator (1.42 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    	var (
    		syncErr   = fmt.Errorf("sync error")
    		statusErr = fmt.Errorf("status error")
    	)
    
    	testCases := []struct {
    		desc string
    
    		hasSyncErr   bool
    		hasStatusErr bool
    
    		expectedErr error
    	}{
    		{
    			desc:         "sync error",
    			hasSyncErr:   true,
    			hasStatusErr: false,
    			expectedErr:  syncErr,
    		},
    		{
    			desc:         "status error",
    			hasSyncErr:   false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	iter := new(MapIter)
    
    	// Use of zero iterator should panic.
    	func() {
    		defer func() { recover() }()
    		iter.Next()
    		t.Error("Next did not panic")
    	}()
    
    	// Reset to new Map should work.
    	m := map[string]int{"one": 1, "two": 2, "three": 3}
    	iter.Reset(ValueOf(m))
    	if got, want := iterateToString(iter), `[one: 1, three: 3, two: 2]`; got != want {
    		t.Errorf("iterator returned %s (after sorting), want %s", got, want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

            "properties": {
              "key": {
                "default": "",
                "description": "key is the label key that the selector applies to.",
                "type": "string"
              },
              "operator": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class EqualityNotApplicableImpl(
        override val operator: String,
        override val leftType: KaType,
        override val rightType: KaType,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtBinaryExpression>(firDiagnostic, token), KaFirDiagnostic.EqualityNotApplicable
    
    internal class EqualityNotApplicableWarningImpl(
        override val operator: String,
        override val leftType: KaType,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

            RefineResultType(op, std::get<0>(result), value.getType());
          }
        }
    
        if (ElementsAttr eattr = mlir::dyn_cast_or_null<ElementsAttr>(attr)) {
          if (std::get<0>(result).getType() == eattr.getType()) continue;
    
          (void)UpdateTypeAndInsertIncompatibleUseCasts(eattr.getType(),
                                                        std::get<0>(result));
        }
      }
    
      return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            "properties": {
              "key": {
                "default": "",
                "description": "key is the label key that the selector applies to.",
                "type": "string"
              },
              "operator": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    </p>
    
    <h2 id="Errors">Errors</h2>
    
    <p>
    The predeclared type <code>error</code> is defined as
    </p>
    
    <pre>
    type error interface {
    	Error() string
    }
    </pre>
    
    <p>
    It is the conventional interface for representing an error condition,
    with the nil value representing no error.
    For instance, a function to read data from a file might be defined:
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

            "properties": {
              "key": {
                "default": "",
                "description": "key is the label key that the selector applies to.",
                "type": "string"
              },
              "operator": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

                if (last instanceof SmbException == false)
                    throw new SmbException(url.toString(), last);
                throw (SmbException)last;
            }
    
            Iterator iter = map.keySet().iterator();
            while (iter.hasNext()) {
                e = (FileEntry)iter.next();
                String name = e.getName();
                if (fnf != null && fnf.accept(this, name) == false)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top