Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for lidx (0.03 sec)

  1. helm/minio/templates/configmap.yaml

      {{- range $idx, $policy := .Values.policies }}
      # Policy: {{ $policy.name }}
      policy_{{ $idx }}.json: |-
        {{- include (print $.Template.BasePath "/_helper_policy.tpl") . | nindent 4 }}
      {{ end }}
      {{- range $idx, $svc := .Values.svcaccts }}
      {{- if $svc.policy }}
      # SVC: {{ $svc.accessKey }}
      svc_policy_{{ $idx }}.json: |-
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. callbacks/create.go

    					values.Columns = append(values.Columns, clause.Column{Name: field.DBName})
    					for idx := range values.Values {
    						if vs[idx] == nil {
    							values.Values[idx] = append(values.Values[idx], stmt.DefaultValueOf(field))
    						} else {
    							values.Values[idx] = append(values.Values[idx], vs[idx])
    						}
    					}
    				}
    			}
    		case reflect.Struct:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactCollectionIntegrationTest.groovy

                        assert artifactResults.size() == 3
    
                        // Check external artifact
                        def idx = artifacts.findIndexOf { it.file.name == 'external-lib-1.0.jar' }
    
                        def result = artifactResults[idx]
                        assert result.file == artifactFiles[idx]
    
                        assert result.id instanceof org.gradle.internal.component.external.model.ModuleComponentArtifactIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tests/helper_test.go

    		sort.Slice(expect.Pets, func(i, j int) bool {
    			return expect.Pets[i].ID > expect.Pets[j].ID
    		})
    
    		for idx, pet := range user.Pets {
    			if pet == nil || expect.Pets[idx] == nil {
    				t.Errorf("pets#%v should equal, expect: %v, got %v", idx, expect.Pets[idx], pet)
    			} else {
    				doCheckPet(t, *pet, *expect.Pets[idx], unscoped)
    			}
    		}
    	})
    
    	t.Run("Toys", func(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function.cc

        input_tensors->emplace_back(node, idx);
    
        const auto& iter = input_nodes->find(node);
        if (iter == input_nodes->end()) {
          input_nodes->insert({node, {idx}});
        } else {
          auto& indices = iter->second;
          if (std::find(indices.begin(), indices.end(), idx) != indices.end()) {
            return InvalidArgument("TF_Output ", node->name(), ":", idx,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                    idx = 0;
                    operationsForExecution.setString(++idx, experiment.getScenario().getClassName());
                    operationsForExecution.setString(++idx, experiment.getScenario().getTestName());
                    operationsForExecution.setString(++idx, experiment.getTestProject());
                    operationsForExecution.setTimestamp(++idx, minDate);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. pkg/kube/krt/index.go

    	extract func(o I) []K,
    ) *Index[I, K] {
    	idx := Index[I, K]{
    		objects: make(map[K]sets.Set[Key[I]]),
    		c:       c,
    		mu:      sync.RWMutex{},
    		extract: extract,
    	}
    	c.Register(func(o Event[I]) {
    		idx.mu.Lock()
    		defer idx.mu.Unlock()
    
    		if o.Old != nil {
    			obj := *o.Old
    			key := GetKey(obj)
    			for _, indexKey := range extract(obj) {
    				sets.DeleteCleanupLast(idx.objects, indexKey, key)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 04:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. migrator/migrator.go

    					if idx.Comment != "" {
    						createTableSQL += fmt.Sprintf(" COMMENT '%s'", idx.Comment)
    					}
    
    					if idx.Option != "" {
    						createTableSQL += " " + idx.Option
    					}
    
    					createTableSQL += ","
    					values = append(values, clause.Column{Name: idx.Name}, tx.Migrator().(BuildIndexOptionsInterface).BuildIndexOptions(idx.Fields, stmt))
    				}
    			}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 07:15:49 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. src/internal/coverage/decodemeta/decode.go

    // 'findex', filling it into the FuncDesc pointed to by 'f'.
    func (d *CoverageMetaDataDecoder) ReadFunc(fidx uint32, f *coverage.FuncDesc) error {
    	if fidx >= d.hdr.NumFuncs {
    		return fmt.Errorf("illegal function index")
    	}
    
    	// Seek to the correct location to read the function offset and read it.
    	funcOffsetLocation := int64(coverage.CovMetaHeaderSize + 4*fidx)
    	if _, err := d.r.Seek(funcOffsetLocation, io.SeekStart); err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/dwarfgen/dwinl.go

    		ii := int(dwv.InlIndex) - 1
    		idx, ok := imap[ii]
    		if !ok {
    			// We can occasionally encounter a var produced by the
    			// inliner for which there is no remaining prog; add a new
    			// entry to the call list in this scenario.
    			idx = insertInlCall(&inlcalls, ii, imap)
    		}
    		inlcalls.Calls[idx].InlVars =
    			append(inlcalls.Calls[idx].InlVars, dwv)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top