Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for catalog (0.14 sec)

  1. pkg/config/validation/agent/extensionprovider.go

    		case *meshconfig.MeshConfig_ExtensionProvider_Datadog:
    			currentErrs = AppendErrors(currentErrs, validateExtensionProviderTracingDatadog(provider.Datadog))
    		//nolint: staticcheck
    		case *meshconfig.MeshConfig_ExtensionProvider_Opencensus:
    			currentErrs = AppendErrors(currentErrs, validateExtensionProviderTracingOpenCensusAgent(provider.Opencensus))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/convert.go

    			return nil, fmt.Errorf("unable to parse %s address %q: %v", o.name, addr, err)
    		}
    		if host == "$(HOST_IP)" {
    			// Replace host with HOST_IP env var if it is "$(HOST_IP)".
    			// This is to support some tracer setting (Datadog, Zipkin), where "$(HOST_IP)"" is used for address.
    			// Tracer address used to be specified within proxy container params, and thus could be interpreted with pod HOST_IP env var.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

                Note: we currently extract this information from the execution plan because it's
                buried under functions in #filter. This could be detangled/simplified by introducing
                excludeTasks(Iterable<Task>) as an analog to addEntryTasks(Iterable<Task>).
    
                This is too drastic a change for the stage in the release cycle were exposing this information
                was necessary, therefore the minimal change solution was implemented.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    	return ValidateProxyAddress(strings.Replace(z.GetAddress(), "$(HOST_IP)", "127.0.0.1", 1))
    }
    
    // ValidateDatadogCollector validates the configuration for sending envoy spans to Datadog
    func ValidateDatadogCollector(d *meshconfig.Tracing_Datadog) error {
    	// If the address contains $(HOST_IP), replace it with a valid IP before validation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          try {
            delay(SMALL_DELAY_MS);
            done = true;
          } catch (InterruptedException ok) {
          }
          return Boolean.TRUE;
        }
      }
    
      //     /**
      //      * Analog of CheckedRunnable for RecursiveAction
      //      */
      //     public abstract class CheckedRecursiveAction extends RecursiveAction {
      //         protected abstract void realCompute() throws Throwable;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          try {
            delay(SMALL_DELAY_MS);
            done = true;
          } catch (InterruptedException ok) {
          }
          return Boolean.TRUE;
        }
      }
    
      //     /**
      //      * Analog of CheckedRunnable for RecursiveAction
      //      */
      //     public abstract class CheckedRecursiveAction extends RecursiveAction {
      //         protected abstract void realCompute() throws Throwable;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess.json

              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}ca/protwords.txt"
            },
            "catalan_stemmer": {
              "type":       "stemmer",
              "language":   "catalan"
            },
            "catalan_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}ca/stemmer_override.txt"
            },
            "czech_stop": {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        {{- end }}
        {{- with (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain)  }}
        - name: TRUST_DOMAIN
          value: "{{ . }}"
        {{- end }}
        {{- if and (eq .Values.global.proxy.tracer "datadog") (isset .ObjectMeta.Annotations `apm.datadoghq.com/env`) }}
        {{- range $key, $value := fromJSON (index .ObjectMeta.Annotations `apm.datadoghq.com/env`) }}
        - name: {{ $key }}
          value: "{{ $value }}"
        {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. src/image/color/ycbcr.go

    //
    // JPEG, VP8, the MPEG family and other codecs use this color model. Such
    // codecs often use the terms YUV and Y'CbCr interchangeably, but strictly
    // speaking, the term YUV applies only to analog video signals, and Y' (luma)
    // is Y (luminance) after applying gamma correction.
    //
    // Conversion between RGB and Y'CbCr is lossy and there are multiple, slightly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. maven-core/plugin-manager.txt

    - we need to deal with plugins as core application logic which can also interact with plugins
    
    * Along with this comes the testing strategies that make this work
    * The repository model where plugins can be stored and cataloged
    * Bridging this into an OSGi system: if this could be done then we can basically take over p2
    
    TODO
    
    - dealing with processing of input and adapting GAVs before searching i.e. plugin groups in Maven and default searching
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
Back to top