Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 600 for translated (0.32 sec)

  1. pkg/kubelet/types/types.go

    	System v1.ResourceList
    	// Kubernetes represents resources reserved for kubernetes system components.
    	Kubernetes v1.ResourceList
    }
    
    // ResolvedPodUID is a pod UID which has been translated/resolved to the representation known to kubelets.
    type ResolvedPodUID types.UID
    
    // MirrorPodUID is a pod UID for a mirror pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/assembler/tasks/Assemble.java

        @PathSensitive(PathSensitivity.RELATIVE)
        public ConfigurableFileCollection getSource() {
            return source;
        }
    
        /**
         * Adds a set of assembler sources files to be translated. The provided sourceFiles object is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
         */
        public void source(Object sourceFiles) {
            source.from(sourceFiles);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. architecture/ambient/peer-authentication.md

    metadata:
      name: strict-and-permissive-mtls
    spec:
      selector:
        matchLabels:
          app: a
      mtls:
        mode: STRICT
      portLevelMtls:
        9090:
          mode: PERMISSIVE
    ```
    
    will be translated into this `Authorization`:
    
    ```yaml
    action: DENY
    groups:
    - rules:
      - matches:
        - notPrincipals:
          - presence: {}
    - rules:
      - matches:
        - notDestinationPorts:
          - 9090
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. cmd/httprange_test.go

    		h, err := rs.ToHeader()
    		if err != nil && !testCase.errExpected || err == nil && testCase.errExpected {
    			t.Errorf("expected error with invalid range: %v", err)
    		}
    		if h != testCase.spec {
    			t.Errorf("Case %d: translated to incorrect header: %s expected: %s",
    				i, h, testCase.spec)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 05 16:56:21 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubelet/oom/oom_watcher_linux_test.go

    	for _, oomInstance := range fs.oomInstancesToStream {
    		outStream <- oomInstance
    	}
    }
    
    // TestWatcherRecordsEventsForOomEvents ensures that our OomInstances coming
    // from `StreamOoms` are translated into events in our recorder.
    func TestWatcherRecordsEventsForOomEvents(t *testing.T) {
    	oomInstancesToStream := []*oomparser.OomInstance{
    		{
    			Pid:                 1000,
    			ProcessName:         "fakeProcess",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 09 06:25:28 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  6. src/image/geom.go

    	return Point{
    		r.Max.X - r.Min.X,
    		r.Max.Y - r.Min.Y,
    	}
    }
    
    // Add returns the rectangle r translated by p.
    func (r Rectangle) Add(p Point) Rectangle {
    	return Rectangle{
    		Point{r.Min.X + p.X, r.Min.Y + p.Y},
    		Point{r.Max.X + p.X, r.Max.Y + p.Y},
    	}
    }
    
    // Sub returns the rectangle r translated by -p.
    func (r Rectangle) Sub(p Point) Rectangle {
    	return Rectangle{
    		Point{r.Min.X - p.X, r.Min.Y - p.Y},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    	// HelmValuesTagSubpath is the subpath from the component root to the tag parameter.
    	HelmValuesTagSubpath = "tag"
    )
    
    var scope = log.RegisterScope("translator", "API translator")
    
    // Translator is a set of mappings to translate between API paths, charts, values.yaml and k8s paths.
    type Translator struct {
    	// Translations remain the same within a minor version.
    	Version version.MinorVersion
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/EquivalenceTest.java

      }
    
      /*
       * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using
       * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer`
       * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And
       * anyway, it's nice to avoid `Integer.valueOf` because the Android toolchain optimizes multiple
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	dryRun := cleanDryRun(req.URL)
    
    	// We don't use verb from <requestInfo>, as this may be propagated from
    	// InstrumentRouteFunc which is registered in installer.go with predefined
    	// list of verbs (different than those translated to RequestInfo).
    	// However, we need to tweak it e.g. to differentiate GET from LIST.
    	reportedVerb := cleanVerb(CanonicalVerb(strings.ToUpper(req.Method), scope), "", req, requestInfo)
    
    	if requestInfo.IsResourceRequest {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

            // MNG-1927, MNG-2124, MNG-3355:
            // If the build section is present and the project directory is non-null, we should make
            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top