Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 156 for pcount (0.18 sec)

  1. cmd/kube-apiserver/app/options/options_test.go

    		"--enable-admission-plugins=AlwaysDeny",
    		"--admission-control-config-file=/admission-control-config",
    		"--advertise-address=192.168.10.10",
    		"--allow-privileged=false",
    		"--anonymous-auth=false",
    		"--apiserver-count=5",
    		"--audit-log-maxage=11",
    		"--audit-log-maxbackup=12",
    		"--audit-log-maxsize=13",
    		"--audit-log-path=/var/log",
    		"--audit-log-mode=blocking",
    		"--audit-log-batch-buffer-size=46",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    	},
    	ErrAccountNotEligible: {
    		Code:           "XMinioInvalidIAMCredentials",
    		Description:    "The account key is not eligible for this operation",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrAdminServiceAccountNotFound: {
    		Code:           "XMinioInvalidIAMCredentials",
    		Description:    "The specified service account is not found",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrPostPolicyConditionInvalidFormat: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    				hosts, ports := ing.TCPAddresses()
    				host := hosts[0]
    				port := ports[0]
    				_, err := ing.Call(echo.CallOptions{
    					Port: echo.Port{
    						Protocol: protocol.HTTP,
    					},
    					Count: 10,
    					HTTP: echo.HTTP{
    						Path:    fmt.Sprintf("/echo-%s?codes=418:10,520:15,200:75", apps.Namespace.Name()),
    						Headers: headers.New().WithHost("server").Build(),
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

          return failure();
        }
      }
    
      cluster->walk([&](Operation* op) {
        if (op == cluster) return WalkResult::advance();
        for (OpOperand& operand : op->getOpOperands()) {
          if (orig_to_new.count(operand.get())) {
            operand.assign(orig_to_new[operand.get()]);
          }
        }
        return WalkResult::advance();
      });
    
      return success();
    }
    
    void XlaBroadcast::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	}
    }
    
    // repeatReader reads content count times, then EOFs.
    type repeatReader struct {
    	content []byte
    	count   int
    	off     int
    }
    
    func (r *repeatReader) Read(p []byte) (n int, err error) {
    	if r.count <= 0 {
    		return 0, io.EOF
    	}
    	n = copy(p, r.content[r.off:])
    	r.off += n
    	if r.off == len(r.content) {
    		r.count--
    		r.off = 0
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/positions.go

    			m = n.Elem
    		case *DotsType:
    			m = n.Elem
    		case *StructType:
    			if l := lastField(n.FieldList); l != nil {
    				m = l
    				continue
    			}
    			return n.Pos()
    			// TODO(gri) need to take TagList into account
    		case *Field:
    			if n.Type != nil {
    				m = n.Type
    				continue
    			}
    			m = n.Name
    		case *InterfaceType:
    			if l := lastField(n.MethodList); l != nil {
    				m = l
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                if (!dir.exists()) {
                    return new GradleBackedArtifactBuilder(executer, dir)
                }
            }
        }
    
        AbstractIntegrationSpec withMaxHttpRetryCount(int count) {
            maxHttpRetries = count
            this
        }
    
        def jarWithClasses(Map<String, String> javaSourceFiles, TestFile jarFile) {
            def builder = artifactBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    		eTime := eVers.latestModtime()
    		oTime := oVers.latestModtime()
    		if !eTime.Equal(oTime) {
    			if eTime.After(oTime) {
    				return e, false
    			}
    			return other, false
    		}
    		// Tiebreak on version count.
    		if len(eVers.versions) > len(oVers.versions) {
    			return e, false
    		}
    		return other, false
    	}
    
    	// Check if each version matches...
    	for i, eVer := range eVers.versions {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/eviction_test.go

    					t.Errorf("error mismatch: expected %v, got %v; name %v", tc.expectError, gotErr, pod.Name)
    					return
    				}
    
    				if tc.expectedDeleteCount != ms.deleteCount {
    					t.Errorf("expected delete count=%v, got %v; name %v", tc.expectedDeleteCount, ms.deleteCount, pod.Name)
    				}
    			})
    		}
    	}
    }
    
    func TestEvictionDryRun(t *testing.T) {
    	testcases := []struct {
    		name            string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. cmd/xl-storage-disk-id-check.go

    }
    
    func (p *xlStorageDiskIDCheck) ListDir(ctx context.Context, origvolume, volume, dirPath string, count int) (s []string, err error) {
    	ctx, done, err := p.TrackDiskHealth(ctx, storageMetricListDir, volume, dirPath)
    	if err != nil {
    		return nil, err
    	}
    	defer done(0, &err)
    
    	return p.storage.ListDir(ctx, origvolume, volume, dirPath, count)
    }
    
    // Legacy API - does not have any deadlines
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top