Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for GatherNd (0.18 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

                            return defaultModelBuilder.readRawModel(gaBuildingRequest, problems);
                        } catch (ModelBuildingException e) {
                            // gathered with problem collector
                        }
                    }
                    return null;
                }
    
                private void loadFullReactor() {
                    if (!fullReactorLoaded) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                            return defaultModelBuilder.readRawModel(gaBuildingRequest, problems);
                        } catch (ModelBuilderException e) {
                            // gathered with problem collector
                        }
                    }
                    return null;
                }
    
                private void loadFullReactor() {
                    if (!fullReactorLoaded) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectPublicationRegistry.java

     *
     * The information is gathered from multiple sources ({@code publishing.publications} container, etc.).
     */
    @ThreadSafe
    public interface ProjectPublicationRegistry {
        void registerPublication(ProjectInternal project, ProjectPublication publication);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. RELEASE.md

    *   Fixes a division by zero in TFLite's implementation of `SpaceToDepth`
        ([CVE-2021-29587](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29587))
    *   Fixes a division by zero in TFLite's implementation of `GatherNd`
        ([CVE-2021-29589](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-29589))
    *   Fixes a division by zero in TFLite's implementation of `TransposeConv`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. pkg/proxy/conntrack/cleanup.go

    	conntrackCleanupServiceIPs := serviceUpdateResult.DeletedUDPClusterIPs
    	conntrackCleanupServiceNodePorts := sets.New[int]()
    	isIPv6 := false
    
    	// merge newly active services gathered from endpointsUpdateResult
    	// a UDP service that changes from 0 to non-0 endpoints is newly active.
    	for _, svcPortName := range endpointsUpdateResult.NewlyActiveUDPServices {
    		if svcInfo, ok := svcPortMap[svcPortName]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    		commandLine = append(commandLine, EscapeArg(arg)...)
    	}
    	return string(commandLine)
    }
    
    // DecomposeCommandLine breaks apart its argument command line into unescaped parts using CommandLineToArgv,
    // as gathered from GetCommandLine, QUERY_SERVICE_CONFIG's BinaryPathName argument, or elsewhere that
    // command lines are passed around.
    // DecomposeCommandLine returns an error if commandLine contains NUL.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/topology_manager.go

    	GetPodTopologyHints(pod *v1.Pod) map[string][]TopologyHint
    	// Allocate triggers resource allocation to occur on the HintProvider after
    	// all hints have been gathered and the aggregated Hint is available via a
    	// call to Store.GetAffinity().
    	Allocate(pod *v1.Pod, container *v1.Container) error
    }
    
    // Store interface is to allow Hint Providers to retrieve pod affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 12:43:16 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. pkg/ctrlz/topics/assets/templates/mem.html

    {{ define "content" }}
    
    <p>
        This information is gathered from the Go runtime and represents the ongoing memory consumption
        of this process. Please refer to the <a href="https://golang.org/pkg/runtime/#MemStats">Go documentation on the MemStats type</a>
        for more information about all of these values.
    </p>
    
    <table>
        <thead>
        <tr>
            <th>Counter</th>
            <th>Value</th>
            <th>Description</th>
        </tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

        /**
         * Constructs the store.
         *
         * @param recordedTypeAnnotations Annotations on the type itself that should be gathered.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

                               Output& zero_clipped_indices, Output& is_positive) {
      auto gathered = Gather(scope, params, zero_clipped_indices);
      // Replace gathered params of negative indices with 0.
      auto zero_slice = ZerosLike(scope, gathered);
      return SelectV2(scope, is_positive, gathered, zero_slice);
    }
    
    Status UnsortedSegmentMinOrMaxGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top