Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 297 for continueCh (0.27 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    			// Since target and load are in the same block
    			// we can stop searching when we leave the block.
    			continue
    		}
    		if v.Op == OpPhi {
    			// A Phi implies we have reached the top of the block.
    			// The memory phi, if it exists, is always
    			// the first logical store in the block.
    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    			// We could handle this situation however it is likely
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

           <artifactId>okio</artifactId>
           <version>1.14.0</version>
         </dependency>
    
         com.squareup.okio:okio:1.14.0
         ```
    
     *  Fix: Handle `HTTP/1.1 100 Continue` status lines, even on requests that did
        not send the `Expect: continue` request header.
     *  Fix: Do not count web sockets toward the dispatcher's per-host connection
        limit.
     *  Fix: Avoid using invalid HTTPS sessions. This prevents OkHttp from crashing
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    		if err == nil {
    			t.Errorf("%v: expected %v", tc.name, tc.expectedError)
    			continue
    		}
    		// this only works when status errors contain the expect kind and version, so this effectively tests serializations too
    		if !strings.Contains(err.Error(), tc.expectedError) {
    			t.Errorf("%v: expected %v, got %v", tc.name, tc.expectedError, err)
    			continue
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		case "Renegotiation":
    			f.Set(reflect.ValueOf(RenegotiateOnceAsClient))
    		case "EncryptedClientHelloConfigList":
    			f.Set(reflect.ValueOf([]byte{'x'}))
    		case "mutex", "autoSessionTicketKeys", "sessionTicketKeys":
    			continue // these are unexported fields that are handled separately
    		default:
    			t.Errorf("all fields must be accounted for, but saw unknown field %q", fn)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. src/go/printer/testdata/parser.go

    				if len(lhs) > 2 {
    					p.errorExpected(lhs[0].Pos(), "1 or 2 expressions")
    					// continue with first two expressions
    					lhs = lhs[0:2]
    				}
    				p.next()
    				rhs = p.parseRhs()
    			} else {
    				// rhs must be single receive operation
    				if len(lhs) > 1 {
    					p.errorExpected(lhs[0].Pos(), "1 expression")
    					// continue with first expression
    				}
    				rhs = lhs[0]
    				lhs = nil // there is no lhs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers.go

    				return nil, fmt.Errorf("eviction percentage minimum reclaim %v must be positive: %s", signal, val)
    			}
    			results[signal] = evictionapi.ThresholdValue{
    				Percentage: percentage,
    			}
    			continue
    		}
    		quantity, err := resource.ParseQuantity(val)
    		if err != nil {
    			return nil, err
    		}
    		if quantity.Sign() < 0 {
    			return nil, fmt.Errorf("negative eviction minimum reclaim specified for %v", signal)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    			Type: "string",
    			Enum: []apiextensionsv1.JSON{{
    				Raw: []byte(`"` + uuidString + `"`),
    			}},
    		}
    
    		for _, v := range myCRD.Spec.Versions {
    			if v.Name != myCRDV1Beta1.Version {
    				continue
    			}
    			v.Schema.OpenAPIV3Schema = sch
    		}
    
    		_, err = ctx.APIExtensionsClient.ApiextensionsV1().CustomResourceDefinitions().Update(context.TODO(), myCRD, metav1.UpdateOptions{
    			FieldManager: "manager",
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewritedec64.go

    			break
    		}
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			if v_0.Op != OpZeromask {
    				continue
    			}
    			v_0_0 := v_0.Args[0]
    			if v_0_0.Op != OpConst32 {
    				continue
    			}
    			c := auxIntToInt32(v_0_0.AuxInt)
    			y := v_1
    			if !(c == 0) {
    				continue
    			}
    			v.copyOf(y)
    			return true
    		}
    		break
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/cache_test.go

    		var imageState *framework.ImageStateSummary
    		for _, node := range nodes {
    			state, ok := node.ImageStates[imageName]
    			if !ok {
    				continue
    			}
    			if imageState == nil {
    				imageState = state
    				continue
    			}
    			if diff := cmp.Diff(imageState, state); diff != "" {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    			if s.Attributes.ExportTo.Contains(visibility.Public) {
    				ps.ServiceIndex.public = append(ps.ServiceIndex.public, s)
    				continue
    			} else if s.Attributes.ExportTo.Contains(visibility.None) {
    				continue
    			}
    			// . or other namespaces
    			for exportTo := range s.Attributes.ExportTo {
    				if exportTo == visibility.Private || string(exportTo) == ns {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top