Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 119 for tracking (0.34 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            this.dependenciesMayChange = component.getModule().isVirtualPlatform();
        }
    
        // the enqueue and dequeue methods are used for performance reasons
        // in order to avoid tracking the set of enqueued nodes
        boolean enqueue() {
            if (queued) {
                return false;
            }
            queued = true;
            return true;
        }
    
        NodeState dequeue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    * Since Gradle 8.1, using many APIs related to the file system is correctly tracked as configuration inputs, including the file system checks, such as `File.exists()` or `File.isFile()`.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    }
    
    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. 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
    // reconciled with the container runtime and other subsystems. The worker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        if scf_scope:
          self.scf_scope += 1
    
      def insert_symbol(self, name, value, type_):
        self.curr_table['symbols'][name] = (value, type_)
        # TODO(mdan): Use the inferred type rather than tracking it here.
        # The following field is deprecated.
        self.curr_table['types'][name] = type_
        return value
    
      def exit_scope(self):
        self.symbols.pop()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"message/global-headers",
    				"message/http",
    				"message/imdn+xml",
    				"message/news",
    				"message/partial",
    				"message/s-http",
    				"message/sip",
    				"message/sipfrag",
    				"message/tracking-status",
    				"message/vnd.si.simp",
    				"model/example",
    				"model/iges",
    				"model/mesh",
    				"model/vnd.dwf",
    				"model/vnd.dwfx+xps",
    				"model/vnd.flatland.3dml",
    				"model/vnd.gdl",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    		return nil, nil
    	}
    	return metaproxier.NewMetaProxier(ipv4Proxier, ipv6Proxier), nil
    }
    
    // Proxier is an nftables based proxy
    type Proxier struct {
    	// ipFamily defines the IP family which this proxier is tracking.
    	ipFamily v1.IPFamily
    
    	// endpointsChanges and serviceChanges contains all changes to endpoints and
    	// services that happened since nftables was synced. For a single object,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    // Proxier is an hns based proxy for connections between a localhost:lport
    // and services that provide the actual backends.
    type Proxier struct {
    	// ipFamily defines the IP family which this proxier is tracking.
    	ipFamily v1.IPFamily
    	// TODO(imroc): implement node handler for winkernel proxier.
    	proxyconfig.NoopNodeHandler
    
    	// endpointsChanges and serviceChanges contains all changes to endpoints and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	dynid       map[Sym]int32       // stores Dynid for symbol
    
    	relocVariant map[relocId]sym.RelocVariant // stores variant relocs
    
    	// Used to implement field tracking; created during deadcode if
    	// field tracking is enabled. Reachparent[K] contains the index of
    	// the symbol that triggered the marking of symbol K as live.
    	Reachparent []Sym
    
    	// CgoExports records cgo-exported symbols by SymName.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/xcoff.go

    		s.Nsclass = C_HIDEXT
    	}
    
    	ldr.SetSymDynid(x, int32(xfile.symbolCount))
    	syms = append(syms, s)
    
    	// Keep track of the section size by tracking the VA range. Individual
    	// alignment differences may introduce a few extra bytes of padding
    	// which are not fully accounted for by ldr.SymSize(x).
    	sv := ldr.SymValue(x) + ldr.SymSize(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
Back to top