Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 143 for nlist (0.14 sec)

  1. pkg/controller/deployment/util/deployment_util.go

    	}
    
    	// TODO: MODIFY THIS METHOD so that it checks for the podTemplateSpecHash label
    	dList, err := deploymentLister.Deployments(rs.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    
    	var deployments []*apps.Deployment
    	for _, d := range dList {
    		selector, err := metav1.LabelSelectorAsSelector(d.Spec.Selector)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadmacho/ldmacho.go

    				} else {
    					dlen := int64(len(l.Data(s)))
    					s1Bld.SetSize(l.SymValue(s) + dlen - l.SymValue(s1))
    				}
    			}
    		}
    
    		if bld.Type() == sym.STEXT {
    			if bld.OnList() {
    				return errorf("symbol %s listed multiple times", bld.Name())
    			}
    			bld.SetOnList(true)
    			textp = append(textp, s)
    			for s1 := bld.Sub(); s1 != 0; s1 = l.SubSym(s1) {
    				if l.AttrOnList(s1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/objfile.go

    	for _, list := range lists {
    		for _, s := range list {
    			w.Uint32(nreloc)
    			nreloc += uint32(len(s.R))
    		}
    	}
    	w.Uint32(nreloc)
    
    	// Symbol Info indexes
    	h.Offsets[goobj.BlkAuxIdx] = w.Offset()
    	naux := uint32(0)
    	for _, list := range lists {
    		for _, s := range list {
    			w.Uint32(naux)
    			naux += uint32(nAuxSym(s))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/link.go

    	pkgIdx map[string]int32
    
    	defs         []*LSym // list of defined symbols in the current package
    	hashed64defs []*LSym // list of defined short (64-bit or less) hashed (content-addressable) symbols
    	hasheddefs   []*LSym // list of defined hashed (content-addressable) symbols
    	nonpkgdefs   []*LSym // list of defined non-package symbols
    	nonpkgrefs   []*LSym // list of referenced non-package symbols
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (name_and_value.first == "_input_shapes") {
            auto& list = name_and_value.second.list();
            auto& signature = func_def->signature();
            // Some models have "_input_shapes" attribute, but with its value empty
            if (list.shape_size() > 0 &&
                list.shape_size() != signature.input_arg_size()) {
              return errors::FailedPrecondition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

    """
    
            when:
            GroupedOutputFixture groupedOutput = new GroupedOutputFixture(LogContent.of(consoleOutput))
    
            then:
            groupedOutput.task(':log').output == 'First line of text\n\n\n\nLast line of text'
        }
    
        def "handles erase directly before progress bar right before end of build"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api.cc

              f_vector.push_back(default_value.list().f(i));
            }
            TFE_OpSetAttrFloatList(op, attr_name, f_vector.data(), f_size);
          }
          // Bool
          if (const int b_size = default_value.list().b_size()) {
            absl::InlinedVector<unsigned char, 4> b_vector;
            b_vector.reserve(b_size);
            for (int i = 0; i < b_size; i++) {
              b_vector.push_back(default_value.list().b(i));
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  9. src/runtime/mgcmark.go

    // cached stacks around isn't a problem.
    func markrootFreeGStacks() {
    	// Take list of dead Gs with stacks.
    	lock(&sched.gFree.lock)
    	list := sched.gFree.stack
    	sched.gFree.stack = gList{}
    	unlock(&sched.gFree.lock)
    	if list.empty() {
    		return
    	}
    
    	// Free stacks.
    	q := gQueue{list.head, list.head}
    	for gp := list.head.ptr(); gp != nil; gp = gp.schedlink.ptr() {
    		stackfree(gp.stack)
    		gp.stack.lo = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// do.
    	assistQueue struct {
    		lock mutex
    		q    gQueue
    	}
    
    	// sweepWaiters is a list of blocked goroutines to wake when
    	// we transition from mark termination to sweep.
    	sweepWaiters struct {
    		lock mutex
    		list gList
    	}
    
    	// cycles is the number of completed GC cycles, where a GC
    	// cycle is sweep termination, mark, mark termination, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top