Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for Street (0.24 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    				// skip if it's not hintfn from rejectorPlugins.
    				continue
    			}
    
    			hint, err := hintfn.QueueingHintFn(logger, pod, oldObj, newObj)
    			if err != nil {
    				// If the QueueingHintFn returned an error, we should treat the event as Queue so that we can prevent
    				// the Pod from being stuck in the unschedulable pod pool.
    				oldObjMeta, newObjMeta, asErr := util.As[klog.KMetadata](oldObj, newObj)
    				if asErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // be used by clients to determine when objects have changed. May be used for optimistic
      // concurrency, change detection, and the watch operation on a resource or set of resources.
      // Clients must treat these values as opaque and passed unmodified back to the server.
      // They may only be valid for a particular resource or set of resources.
      //
      // Populated by the system.
      // Read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // According to the Standard (7.5/1), function types with different linkages
    // are different even if they are otherwise identical.  Some compilers (for
    // example, SunStudio) treat them as different types.  Since class methods
    // cannot be defined with C-linkage we need to define a free C-function to
    // pass into pthread_create().
    extern "C" inline void* ThreadFuncWithCLinkage(void* thread) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    		return CMPgt
    	}
    
    	if t.kind != x.kind {
    		return cmpForNe(t.kind < x.kind)
    	}
    
    	if t.obj != nil || x.obj != nil {
    		// Special case: we keep byte and uint8 separate
    		// for error messages. Treat them as equal.
    		switch t.kind {
    		case TUINT8:
    			if (t == Types[TUINT8] || t == ByteType) && (x == Types[TUINT8] || x == ByteType) {
    				return CMPeq
    			}
    
    		case TINT32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. src/cmd/cgo/out.go

    			if *gccgo {
    				fmt.Fprintf(fc, "extern byte *%s;\n", n.C)
    			} else {
    				// Force a reference to all symbols so that
    				// the external linker will add DT_NEEDED
    				// entries as needed on ELF systems.
    				// Treat function variables differently
    				// to avoid type conflict errors from LTO
    				// (Link Time Optimization).
    				if n.Kind == "fpvar" {
    					fmt.Fprintf(fm, "extern void %s();\n", n.C)
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      def _emit_with_loc(self, op_str, node=None):
        """Emit the mlir operation with the location associated with the node.
    
        Args:
          op_str: The mlir operation string to be emitted.
          node: The node of the AST tree, the mlir operation translated from.
        """
        loc = ''
        if node:
          loc = self._create_mlir_loc(
              anno.getanno(node, anno.Basic.ORIGIN, default=None))
        self.emit(op_str + ' ' + loc)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    	d.calcCompUnitRanges()
    	sort.Sort(compilationUnitByStartPC(d.linkctxt.compUnits))
    
    	// newdie adds DIEs to the *beginning* of the parent's DIE list.
    	// Now that we're done creating DIEs, reverse the trees so DIEs
    	// appear in the order they were created.
    	for _, u := range d.linkctxt.compUnits {
    		reversetree(&u.DWInfo.Child)
    	}
    	reversetree(&dwtypes.Child)
    	movetomodule(d.linkctxt, &dwtypes)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern void TF_Reset(const TF_SessionOptions* opt,
                                        const char** containers, int ncontainers,
                                        TF_Status* status);
    // Treat the bytes proto[0,proto_len-1] as a serialized GraphDef and
    // add the nodes in that GraphDef to the graph for the session.
    //
    // Prefer use of TF_Session and TF_GraphImportGraphDef over this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                'a.txt',
                'dir/b.txt',
                'c.txt'
            )
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "copy from file tree"() {
            given:
            buildScript '''
            task cpy {
                doLast {
                    copy {
                        from fileTree(dir: 'src', excludes: ['**/ignore/**'], includes: ['*', '*/*'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    You should only pick one for your project.
    
    It's a good idea to commit this file to VCS (as long as you trust your VCS).
    If you use git and use the binary version, make sure to make it treat this file as binary, by adding this to your `.gitattributes` file:
    
    ----
    *.gpg           binary
    ----
    
    You can also ask Gradle to export all trusted keys without updating the verification metadata file:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top