Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 84 for RES (0.21 sec)

  1. src/strings/strings_test.go

    				sep := s[begin:end]
    				if i%4 == 0 {
    					pos := rand.Intn(len(sep) + 1)
    					sep = sep[:pos] + "A" + sep[pos:]
    				}
    				want := simpleIndex(s, sep)
    				res := Index(s, sep)
    				if res != want {
    					t.Errorf("Index(%s,%s) = %d; want %d", s, sep, res, want)
    				}
    			}
    		}
    	}
    }
    
    func TestIndexRune(t *testing.T) {
    	tests := []struct {
    		in   string
    		rune rune
    		want int
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    		}
    		return a.oi.ModTime.After(b.oi.ModTime)
    	})
    
    	for _, res := range results {
    		err := res.err
    		if err == nil {
    			return res.oi, res.zIdx, nil
    		}
    		if !isErrObjectNotFound(err) && !isErrVersionNotFound(err) {
    			// some errors such as MethodNotAllowed for delete marker
    			// should be returned upwards.
    			return res.oi, res.zIdx, err
    		}
    		// When its a delete marker and versionID is empty
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. plugin/pkg/admission/resourcequota/admission_test.go

    	res := api.ResourceList{}
    	if cpu != "" {
    		res[api.ResourceCPU] = resource.MustParse(cpu)
    	}
    	if memory != "" {
    		res[api.ResourceMemory] = resource.MustParse(memory)
    	}
    	return res
    }
    
    func getResourceRequirements(requests, limits api.ResourceList) api.ResourceRequirements {
    	res := api.ResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    	return res
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    			return err
    		}
    
    		prevObj := ""
    
    		skipReplicate := false
    		for res := range slowCh {
    			if res.Err != nil {
    				ri.Failed = true
    				batchLogIf(ctx, res.Err)
    				continue
    			}
    			result := res.Item
    			if result.Name != prevObj {
    				prevObj = result.Name
    				skipReplicate = result.DeleteMarker && s3Type
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-tf.mlir

      func.return %166 : tensor<1x1000xf32>
    
      // CHECK-LABEL: matmulNoTransposeB
      // CHECK: %[[RES:.*]] = "tf.Const"() <{value = dense<[1, 0]> : tensor<2xi32>}> : () -> tensor<?xi32>
      // CHECK: %[[TRANS1:.*]] = "tf.Transpose"(%arg0, %[[RES]]) : (tensor<1x1280xf32>, tensor<?xi32>) -> tensor<*xf32>
      // CHECK: %[[TRANS2:.*]] = "tf.Transpose"(%arg1, %[[RES]]) : (tensor<1280x1000xf32>, tensor<?xi32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. pkg/controller/endpoint/endpoints_controller_test.go

    	handlerFunc := func(res http.ResponseWriter, req *http.Request) {
    		if controller == nil {
    			res.WriteHeader(http.StatusInternalServerError)
    			res.Write([]byte("controller has not been set yet"))
    			return
    		}
    
    		if req.Method == "POST" {
    			controller.endpointsStore.Add(endpoint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        }
                    }
                }
            """
            buildFile << """
                configurations {
                    dependencyScope("deps")
                    resolvable("res") {
                        extendsFrom(deps)
                        attributes {
                            attribute(CUSTOM_ATTRIBUTE, "foo")
                        }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy_test.go

    func getResourceList(cpu, memory string) api.ResourceList {
    	res := api.ResourceList{}
    	if cpu != "" {
    		res[api.ResourceCPU] = resource.MustParse(cpu)
    	}
    	if memory != "" {
    		res[api.ResourceMemory] = resource.MustParse(memory)
    	}
    	return res
    }
    
    func getResourceRequirements(requests, limits api.ResourceList) api.ResourceRequirements {
    	res := api.ResourceRequirements{}
    	res.Requests = requests
    	res.Limits = limits
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			res, status = pe.Preempt(ctx, test.pod, make(framework.NodeToStatusMap))
    			if !status.IsSuccess() && !status.IsRejected() {
    				t.Errorf("unexpected error in preemption: %v", status.AsError())
    			}
    			if res != nil && res.NominatingInfo != nil && len(deletedPodNames) > 0 {
    				t.Errorf("didn't expect any more preemption. Node %v is selected for preemption.", res.NominatedNodeName)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation.go

    		if len(parts) == 1 {
    			hasResourceWithoutSubresource = resSub != "*"
    			continue
    		}
    		res, sub := parts[0], parts[1]
    		if _, ok := resourcesWithWildcardSubresoures[res]; ok {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resSub, fmt.Sprintf("if '%s/*' is present, must not specify %s", res, resSub)))
    		}
    		if _, ok := subResourcesWithWildcardResource[sub]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top