Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for p$index (0.43 sec)

  1. pkg/revisions/tag_watcher.go

    		p.notifyHandlers()
    		return nil
    	}))
    	p.webhooks = kclient.NewFiltered[*admissionregistrationv1.MutatingWebhookConfiguration](client, kubetypes.Filter{
    		ObjectFilter: kubetypes.NewStaticObjectFilter(isTagWebhook),
    	})
    	p.index = kclient.CreateIndexWithDelegate[string, *admissionregistrationv1.MutatingWebhookConfiguration](p.webhooks,
    		func(o *admissionregistrationv1.MutatingWebhookConfiguration) []string {
    			rev := o.GetLabels()[label.IoIstioRev.Name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (p *Parser) checkAdvance(sec section) error {
    	if p.section < sec {
    		return ErrNotStarted
    	}
    	if p.section > sec {
    		return ErrSectionDone
    	}
    	p.resHeaderValid = false
    	if p.index == int(p.header.count(sec)) {
    		p.index = 0
    		p.section++
    		return ErrSectionDone
    	}
    	return nil
    }
    
    func (p *Parser) resource(sec section) (Resource, error) {
    	var r Resource
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    		case ARNG_16B:
    			c.checkindex(p, index, 15)
    			Q = 1
    			imm5 = 1
    			imm5 |= index << 1
    		case ARNG_2D:
    			c.checkindex(p, index, 1)
    			Q = 1
    			imm5 = 8
    			imm5 |= index << 4
    		case ARNG_2S:
    			c.checkindex(p, index, 3)
    			Q = 0
    			imm5 = 4
    			imm5 |= index << 3
    		case ARNG_4H:
    			c.checkindex(p, index, 7)
    			Q = 0
    			imm5 = 2
    			imm5 |= index << 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/initorder.go

    			// cycle errors.
    		}
    
    		// reduce dependency count of all dependent nodes
    		// and update priority queue
    		for p := range n.pred {
    			p.ndeps--
    			heap.Fix(&pq, p.index)
    		}
    
    		// record the init order for variables with initializers only
    		v, _ := n.obj.(*Var)
    		info := check.objMap[v]
    		if v == nil || !info.hasInitializer() {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/initorder.go

    			// cycle errors.
    		}
    
    		// reduce dependency count of all dependent nodes
    		// and update priority queue
    		for p := range n.pred {
    			p.ndeps--
    			heap.Fix(&pq, p.index)
    		}
    
    		// record the init order for variables with initializers only
    		v, _ := n.obj.(*Var)
    		info := check.objMap[v]
    		if v == nil || !info.hasInitializer() {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

      %4 = shape.shape_of %3 : tensor<?x28x28x16xf32> -> tensor<4xindex>
      %5 = stablehlo.dynamic_broadcast_in_dim %1, %4, dims = [3] : (tensor<16xf32>, tensor<4xindex>) -> tensor<?x28x28x16xf32>
      %6 = stablehlo.add %3, %5 : tensor<?x28x28x16xf32>
      %7 = shape.shape_of %6 : tensor<?x28x28x16xf32> -> tensor<4xindex>
      %8 = stablehlo.dynamic_broadcast_in_dim %2, %7, dims = [] : (tensor<f32>, tensor<4xindex>) -> tensor<?x28x28x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: arith.divsi {{.*}} : index
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
      // CHECK: mhlo.real_dynamic_slice {{.*}} : (tensor<4x?x4xf32>, tensor<3xindex>, tensor<3xindex>, tensor<3xindex>) -> tensor<4x?x4xf32>
      // CHECK: muli {{.*}} : index
      // CHECK: muli {{.*}} : index
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			t.Errorf("%v: expected no error, but got %v", tc.name, err)
    		}
    	}
    }
    
    type predictableNameGenerator struct {
    	index int
    }
    
    func (p *predictableNameGenerator) GenerateName(base string) string {
    	p.index++
    	return fmt.Sprintf("%s%d", base, p.index)
    }
    
    func TestStoreCreateGenerateNameConflict(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/unfuse_mhlo_batch_norm.mlir

      // CHECK-DAG: %[[VAR_SHAPE:.+]] = shape.shape_of %[[VARIANCE]] : tensor<?xf32> -> tensor<1xindex>
      // CHECK-DAG: %[[EPS_BCAST:.+]] =  "mhlo.dynamic_broadcast_in_dim"(%[[EPS]], %[[VAR_SHAPE]]) <{broadcast_dimensions = dense<> : tensor<0xi64>}> : (tensor<f32>, tensor<1xindex>) -> tensor<?xf32>
      // CHECK-DAG: %[[VARIANCE_EPS:.+]] = mhlo.add %[[VARIANCE]], %[[EPS_BCAST]] : tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-binary-elementwise.mlir

      // NOT-CHECK-NEXT:   %[[RESULT_SHAPE:.+]] = shape.broadcast %[[LHS_SHAPE1]], %[[RHS_SHAPE]] : tensor<?xindex>, tensor<?xindex> -> tensor<?xindex>
      // NOT-CHECK-NEXT:   %[[RESULT_EXTENTS:.+]] = tensor.cast %[[RESULT_SHAPE]] : tensor<?xindex> to tensor<1xindex>
      // NOT-CHECK-DAG:    %[[LHS_BCAST:.+]] = "mhlo.dynamic_broadcast_in_dim"(%arg0, %[[RESULT_EXTENTS]]) <{broadcast_dimensions = dense<0> : tensor<1xi64>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top