Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 358 for prefixer (0.34 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

            current = current.parent;
            prefixer = new DefaultPrefixer();
            return this;
        }
    
        private void writeNode(Node node) {
            if (node.prefix == null) {
                node.prefix = node.isTopLevelNode() ? "" : node.parent.prefix + "    ";
            }
    
            StyledTextOutput output = new LinePrefixingStyledTextOutput(original, node.prefix, false);
            if (!node.valueWritten) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    this.props=["transition","transition-property"],this.prefixes=e}add(e,t){let r,n,a=this.prefixes.add[e.prop],s=this.ruleVendorPrefixes(e),o=s||a&&a.prefixes||[],u=this.parse(e.value),c=u.map(m=>this.findProp(m)),f=[];if(c.some(m=>m[0]==="-"))return;for(let m of u){if(n=this.findProp(m),n[0]==="-")continue;let b=this.prefixes.add[n];if(!(!b||!b.prefixes))for(r of b.prefixes){if(s&&!s.some(y=>r.includes(y)))continue;let x=this.prefixes.prefixed(n,r);x!=="-ms-transform"&&!c.includes(x)&&(this.disab...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  3. cni/pkg/install/testdata/istio-cni-prefixed.conf

    {
      "cniVersion": "0.3.1",
      "name": "istio-cni",
      "type": "prefix-istio-cni",
      "plugin_log_level": "debug",
      "kubernetes": {
          "kubeconfig": "/path/to/kubeconfig",
          "cni_bin_dir": "/path/cni/bin"
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 215 bytes
    - Viewed (0)
  4. cmd/object-api-listobjects_test.go

    				}
    
    				if len(testCase.result.Prefixes) != len(result.Prefixes) {
    					t.Log(testCase, testCase.result.Prefixes, result.Prefixes)
    					t.Fatalf("%s: Expected number of prefixes in the result to be '%d', but found '%d' prefixes instead", instanceType, len(testCase.result.Prefixes), len(result.Prefixes))
    				}
    				for j := 0; j < len(testCase.result.Prefixes); j++ {
    					if testCase.result.Prefixes[j] != result.Prefixes[j] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/pluggable_profiler/BUILD

            "//tensorflow/core:protos_all_cc",
            "//tensorflow/core/common_runtime/device:device_utils",
            "//tensorflow/core/profiler/lib:profiler_factory",
            "//tensorflow/core/profiler/lib:profiler_interface",
            "//tensorflow/core/profiler/protobuf:xplane_proto_cc",
        ],
    )
    
    cc_library(
        name = "pluggable_profiler_internal",
        hdrs = [
            "pluggable_profiler.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/crypto/ed25519/ed25519.go

    	return signature
    }
    
    // Domain separation prefixes used to disambiguate Ed25519/Ed25519ph/Ed25519ctx.
    // See RFC 8032, Section 2 and Section 5.1.
    const (
    	// domPrefixPure is empty for pure Ed25519.
    	domPrefixPure = ""
    	// domPrefixPh is dom2(phflag=1) for Ed25519ph. It must be followed by the
    	// uint8-length prefixed context.
    	domPrefixPh = "SigEd25519 no Ed25519 collisions\x01"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            configurationCacheRun "help"
    
            then:
            outputContains '2!'
            outputContains "because the set of environment variables prefixed by '$ENV_PROJECT_PROPERTIES_PREFIX' has changed."
            configurationCache.assertStateStored()
    
            when: 'the set of prefixed environment variables changes'
            executer.withEnvironmentVars([
                (ENV_PROJECT_PROPERTIES_PREFIX + 'unused'): 1,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. internal/bucket/versioning/versioning.go

    	return v.Status == Enabled
    }
    
    // Versioned returns if 'prefix' has versioning enabled or suspended.
    func (v Versioning) Versioned(prefix string) bool {
    	return v.PrefixEnabled(prefix) || v.PrefixSuspended(prefix)
    }
    
    // PrefixEnabled - returns true if versioning is enabled at the bucket and given
    // prefix, false otherwise.
    func (v Versioning) PrefixEnabled(prefix string) bool {
    	if v.Status != Enabled {
    		return false
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractBuildExperimentRunner.java

    import org.gradle.profiler.BenchmarkResultCollector;
    import org.gradle.profiler.BuildMutator;
    import org.gradle.profiler.InvocationSettings;
    import org.gradle.profiler.Profiler;
    import org.gradle.profiler.ProfilerFactory;
    import org.gradle.profiler.ScenarioDefinition;
    import org.gradle.profiler.report.Format;
    import org.gradle.profiler.result.BuildInvocationResult;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

                        addressPrefix: 172.16.10.10
                        prefixLen: 32
                - orIds:
                    ids:
                    - directRemoteIp:
                        addressPrefix: 10.0.0.1
                        prefixLen: 32
                    - directRemoteIp:
                        addressPrefix: 10.0.0.2
                        prefixLen: 32
                - orIds:
                    ids:
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top