Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 620 for purely (0.23 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    				return rs, errGoModDirty
    			}
    		}
    
    		// No explicit roots are missing and all roots are already at the versions
    		// we want to keep. Any other changes we would make are purely cosmetic,
    		// such as pruning redundant indirect dependencies. Per issue #34822, we
    		// ignore cosmetic changes when we cannot update the go.mod file.
    		return rs, nil
    	}
    
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    # the second iteration of a parameterized test
    gradle test --tests '*ParameterizedTest.*[2]'
    ```
    
    Note that the wildcard '*' has no special understanding of the '.' package separator. It's purely text based. So `--tests *.SomeTestClass` will match any package, regardless of its 'depth'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      TF_EXPECT_FUNCTIONDEFLIBRARY_EQ(library_expected, library);
    }
    
    // Test with two functions to transform, each with one outside_compilation
    // cluster, with the dependency between them purely from an outside_compilation
    // edge.
    TEST(EncapsulateSubgraphsTest, TwoFunctionsTwoOutsideDependencyFromOutside) {
      FunctionDefLibrary library;
      GraphDef graphdef;
    
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      # a placeholder to create an external vSwitch. This is purely for convenience
      # to be able to remove/modify the actual HNS network ("cbr0") or rejoin the
      # nodes without a network blip. Creating a vSwitch takes time, causes network
      # blips, and it makes it more likely to hit the issue where flanneld is
      # stuck, so we want to do this as rarely as possible."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			}
    		})
    	}
    
    	// Load deprecations for modules mentioned on the command line. Only load
    	// deprecations for indirect dependencies if they're also direct dependencies
    	// of the main module. Deprecations of purely indirect dependencies are
    	// not actionable.
    	deprecations := make([]modMessage, 0, len(relevantMods))
    	for m, flags := range relevantMods {
    		if flags&(resolved|named) != 0 || flags&(hasPkg|direct) == hasPkg|direct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    			value := *override
    			opts.KillPodOptions.PodTerminationGracePeriodSecondsOverride = &value
    		}
    	}
    	// StartTime is not copied - that is purely for tracking latency of config propagation
    	// from kubelet to pod worker.
    }
    
    // podWorkers keeps track of operations on pods and ensures each pod is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		}
    	}
    	return ips
    }
    
    // convertStatusToAPIStatus initialize an api PodStatus for the given pod from
    // the given internal pod status and the previous state of the pod from the API.
    // It is purely transformative and does not alter the kubelet state at all.
    func (kl *Kubelet) convertStatusToAPIStatus(pod *v1.Pod, podStatus *kubecontainer.PodStatus, oldPodStatus v1.PodStatus) *v1.PodStatus {
    	var apiPodStatus v1.PodStatus
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    }
    
    // GetFuncDwarfAuxSyms collects and returns the auxiliary DWARF
    // symbols associated with a given function symbol.  Prior to the
    // introduction of the loader, this was done purely using name
    // lookups, e.f. for function with name XYZ we would then look up
    // go.info.XYZ, etc.
    func (l *Loader) GetFuncDwarfAuxSyms(fnSymIdx Sym) (auxDwarfInfo, auxDwarfLoc, auxDwarfRanges, auxDwarfLines Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	// If the first stage is empty, popFront can swap the
    	// first and second stages to remedy the situation.
    	//
    	// This two-stage split is analogous to the use of two lists
    	// in Okasaki's purely functional queue but without the
    	// overhead of reversing the list when swapping stages.
    	head    []*wantConn
    	headPos int
    	tail    []*wantConn
    }
    
    // len returns the number of items in the queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    			}
    			incidlelocked(1)
    			lock(&allpLock)
    		}
    	}
    	unlock(&allpLock)
    	return uint32(n)
    }
    
    // Tell all goroutines that they have been preempted and they should stop.
    // This function is purely best-effort. It can fail to inform a goroutine if a
    // processor just started running it.
    // No locks need to be held.
    // Returns true if preemption request was issued to at least one goroutine.
    func preemptall() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top