Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for Matcher (0.38 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    //  - the type, aux, and auxint fields must match if they are specified.
    //  - the first occurrence of a variable defines that variable.  Subsequent
    //    uses must match (be == to) the first use.
    //  - v is defined to be the value matched.
    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    //  - the type of the top-level expression is the same as the one on the left-hand side.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    				t.Errorf("Unexpected number of create calls.  Expected <= %d, saw %d\n", fakePodControl.CreateLimit*2, fakePodControl.CreateCallCount)
    			}
    			if p := len(fakePodControl.Patches); p != tc.expectedPodPatches {
    				t.Errorf("Got %d pod patches, want %d", p, tc.expectedPodPatches)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	err := o.GetRawData(ctx, volume, file, rawDataFn)
    	if err != nil {
    		if errors.Is(err, errFileNotFound) {
    			addErr("GetRawData: No files matched the given pattern")
    			return
    		}
    		embedFileInZip(inspectZipW, "GetRawData-err.txt", []byte(err.Error()), 0o600)
    		adminLogIf(ctx, err)
    	}
    
    	// save the format.json as part of inspect by default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <p>
     * The wildcard expression may consist of two special meta
     * characters in addition to the normal filename characters. The '*'
     * character matches any number of characters in part of a name. If
     * the expression begins with one or more '?'s then exactly that
     * many characters will be matched whereas if it ends with '?'s
     * it will match that many characters <i>or less</i>.
     * <p>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    	// if we upgrade and make a backwards incompatible change.
    	//
    	// The node selector matches no nodes which mimics the behavior of kubectl delete.
    	//
    	// The DaemonSet should not schedule pods and should not delete scheduled pods in
    	// this case even though it's empty pod selector matches all pods. The DaemonSetController
    	// should detect this misconfiguration and choose not to sync the DaemonSet. We should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    		{Name: "Class", Type: "string", Description: "The name of the IngressClass resource that should be used for additional configuration"},
    		{Name: "Hosts", Type: "string", Description: "Hosts that incoming requests are matched against before the ingress rule"},
    		{Name: "Address", Type: "string", Description: "Address is a list containing ingress points for the load-balancer"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    				matchHTTPRoutes = append(matchHTTPRoutes, matchHTTPRoute)
    			}
    		}
    		if duplicateMatches == len(route.Match) {
    			reportUnreachable(routeName(route, rulen), "all matches used by prior rules")
    		}
    	}
    
    	// at least 2 prefix matched routes for overlapping match validation
    	if len(matchHTTPRoutes) > 1 {
    		// check the overlapping match from the first prefix information
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

    // expected-warning @+1 {{TFLite does not support batched input for non_max_suppression_padded}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    	err  error // deferred error for easy chaining
    	rows *Rows
    }
    
    // Scan copies the columns from the matched row into the values
    // pointed at by dest. See the documentation on [Rows.Scan] for details.
    // If more than one row matches the query,
    // Scan uses the first row and discards the rest. If no row matches
    // the query, Scan returns [ErrNoRows].
    func (r *Row) Scan(dest ...any) error {
    	if r.err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    				if getForAction.GetResource().Resource == groupResource.String() {
    					matchedTarget = &tc.metricsTarget[i]
    				}
    			}
    		}
    		assert.NotNil(t, matchedTarget, "this request should have matched one of the metric specs")
    		assert.Equal(t, "qps", getForAction.GetMetricName(), "the metric name requested should have been qps, as specified in the metric spec")
    
    		metrics.Items = []cmapi.MetricValue{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top