Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 871 for Cint (0.04 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt

     * hint for further adapters to process.
     *
     * Types like ANY and CHOICE that don't have a consistent tag cannot use this.
     */
    internal data class BasicDerAdapter<T>(
      private val name: String,
      /** The tag class this adapter expects, or -1 to match any tag class. */
      val tagClass: Int,
      /** The tag this adapter expects, or -1 to match any tag. */
      val tag: Long,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_activity_listener.h

    Status BroadcastOptimizationRemark(XlaOptimizationRemark optimization_remark);
    
    // LINT.IfChange
    // Called after TensorFlow realizes possible lost performance. The parameters in
    // this should match all of the values in the XlaOptimizationRemark proto.
    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information);
    
    // LINT.ThenChange(//tensorflow/compiler/jit/xla_activity.proto)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 07 11:04:01 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/ParallelismBuildOptions.java

                try {
                    int workerCount = Integer.parseInt(value);
                    if (workerCount < 1) {
                        origin.handleInvalidValue(value, HINT);
                    }
                    settings.setMaxWorkerCount(workerCount);
                } catch (NumberFormatException e) {
                    origin.handleInvalidValue(value, HINT);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblemCollector.java

     * the fact that the problem reporter has/should not have information about the calling context and hence cannot provide
     * an expressive source hint for the model problem. Instead, the source hint is configured by the model builder before
     * it delegates to other components that potentially encounter problems. Then, the problem reporter can focus on
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. common/Makefile.common.mk

    lint-licenses:
    	@if test -d licenses; then license-lint --config common/config/license-lint.yml; fi
    
    lint-all: lint-dockerfiles lint-scripts lint-yaml lint-helm lint-copyright-banner lint-go lint-python lint-markdown lint-sass lint-typescript lint-licenses
    
    tidy-go:
    	@find -name go.mod -execdir go mod tidy \;
    
    mod-download-go:
    	@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. Makefile.core.mk

    lint-helm-global:
    	find manifests -name 'Chart.yaml' -print0 | ${XARGS} -L 1 dirname | xargs -r helm lint
    
    lint: lint-python lint-copyright-banner lint-scripts lint-go lint-dockerfiles lint-markdown lint-yaml lint-licenses lint-helm-global check-agent-deps ## Runs all linters.
    	@bin/check_samples.sh
    	@testlinter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/policy_static.go

    	// Call Topology Manager to get the aligned socket affinity across all hint providers.
    	hint := p.affinity.GetAffinity(string(pod.UID), container.Name)
    	klog.InfoS("Topology Affinity", "pod", klog.KObj(pod), "containerName", container.Name, "affinity", hint)
    
    	// Allocate CPUs according to the NUMA affinity contained in the hint.
    	cpuset, err := p.allocateCPUs(s, numCPUs, hint.NUMANodeAffinity, p.cpusToReuse[string(pod.UID)])
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  8. tools/proto/buf.yaml

    version: v1beta1
    build:
      roots:
        - operator
        - pkg
        - common-protos
    lint:
      allow_comment_ignores: true
      use:
        - BASIC
      except:
        - FIELD_LOWER_SNAKE_CASE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Mar 06 03:07:59 UTC 2022
    - 202 bytes
    - Viewed (0)
  9. maven-plugin-api/src/test/resources/plugin.xml

          </configuration>
          <requirements>
            <requirement>
              <role>org.codehaus.plexus.archiver.Archiver</role>
              <role-hint>jar</role-hint>
              <field-name>jarArchiver</field-name>
            </requirement>
          </requirements>
        </mojo>
        <mojo>
          <goal>war</goal>
          <threadSafe>true</threadSafe>
        </mojo>
      </mojos>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 16:05:24 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  10. tests/preload_suits_test.go

    	type (
    		Level0 struct {
    			ID       uint
    			Value    string
    			Level1ID uint
    		}
    		Level1 struct {
    			ID         uint
    			Value      string
    			Level2ID   *uint
    			Level2_1ID *uint
    			Level0s    []Level0 `json:",omitempty"`
    		}
    		Level2 struct {
    			ID       uint
    			Level1s  []Level1
    			Level3ID uint
    		}
    		Level2_1 struct {
    			ID       uint
    			Level1s  []Level1 `json:",omitempty"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Mar 18 05:38:46 UTC 2022
    - 30.3K bytes
    - Viewed (0)
Back to top