Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for overlap (0.24 sec)

  1. pkg/apis/batch/validation/validation_test.go

    			wantError:           errors.New("failedIndexes and completedIndexes overlap at index: 8"),
    		},
    		"overlapping intervals, corrupted completed interval skipped": {
    			completedIndexesStr: "0,2-4,x,6-8,12-19",
    			failedIndexesStr:    "1,8,9-10",
    			completions:         20,
    			wantError:           errors.New("failedIndexes and completedIndexes overlap at index: 8"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    func TestGatewayFilterChainSNIOverlap(t *testing.T) {
    	cases := []struct {
    		name            string
    		gateways        []config.Config
    		virtualServices []config.Config
    	}{
    		{
    			name: "no sni overlap",
    			gateways: []config.Config{
    				{
    					Meta: config.Meta{Name: "gw", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. pkg/registry/batch/job/strategy_test.go

    						},
    					},
    				},
    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeInvalid, Field: "status.conditions"},
    			},
    		},
    		"invalid failedIndexes, which overlap with completedIndexes": {
    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:    ptr.To[int32](5),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	{0x65a41be6, "PT_OPENBSD_BOOTDATA"},
    	{0x6ffffffb, "PT_SUNWSTACK"},
    	{0x6fffffff, "PT_HIOS"},
    	{0x70000000, "PT_LOPROC"},
    	// We don't list the processor-dependent ProgTypes,
    	// as the values overlap.
    	{0x7fffffff, "PT_HIPROC"},
    }
    
    func (i ProgType) String() string   { return stringName(uint32(i), ptStrings, false) }
    func (i ProgType) GoString() string { return stringName(uint32(i), ptStrings, true) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    		p.CFiles,
    		p.CXXFiles,
    		p.MFiles,
    		p.HFiles,
    		p.FFiles,
    		p.SFiles,
    		p.SwigFiles,
    		p.SwigCXXFiles,
    		p.SysoFiles,
    		p.TestGoFiles,
    		p.XTestGoFiles,
    	)
    
    	// EmbedFiles may overlap with the other files.
    	// Dedup, but delay building the map as long as possible.
    	// Only files in the current directory (no slash in name)
    	// need to be checked against the files variable above.
    	var have map[string]bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    pruning away boxes that have high intersection-over-union (IOU) overlap
    with previously selected boxes.  Bounding boxes with score less than
    `score_threshold` are removed.  Bounding boxes are supplied as
    [y1, x1, y2, x2], where (y1, x1) and (y2, x2) are the coordinates of any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"uid": "1234",
    				"foo": "bar",
    				"bar": [
    					"baz",
    					"qux"
    				]
    			}`, valid.Unix()),
    			wantInitErr: `issuer.url: Invalid value: "https://auth.example.com": URL must not overlap with disallowed issuers: [https://auth.example.com]`,
    		},
    		{
    			name: "extra claim mapping, empty string value for key",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

                            canon.regionMatches( true, 0, dest.canon, 0,
                                    Math.min( canon.length(), dest.canon.length() ))) {
                    throw new SmbException( "Source and destination paths overlap." );
                }
            } catch (UnknownHostException uhe) {
            }
    
            w = new WriterThread();
            w.setDaemon( true );
            w.start();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Constant flag values. For any comparison, there are 5 possible
    		// outcomes: the three from the signed total order (<,==,>) and the
    		// three from the unsigned total order. The == cases overlap.
    		// Note: there's a sixth "unordered" outcome for floating-point
    		// comparisons, but we don't use such a beast yet.
    		// These ops are for temporary use by rewrite rules. They
    		// cannot appear in the generated assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. src/cmd/internal/obj/arm64/asm7.go

    		_, v, accessFlags := SysRegEnc(p.From.Reg)
    		if v == 0 {
    			c.ctxt.Diag("illegal system register:\n%v", p)
    		}
    		if (o1 & (v &^ (3 << 19))) != 0 {
    			c.ctxt.Diag("MRS register value overlap\n%v", p)
    		}
    		if accessFlags&SR_READ == 0 {
    			c.ctxt.Diag("system register is not readable: %v", p)
    		}
    
    		o1 |= v
    		o1 |= uint32(p.To.Reg & 31)
    
    	case 36: /* mov R,SPR */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top