Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for separators (0.2 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- Parent Model                                                           -->
            <!-- ====================================================================== -->
    
            <field xdoc.separator="blank">
              <name>parent</name>
              <version>4.0.0+</version>
              <description>The location of the parent project, if one exists. Values from the parent
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		debug.PrintStack()
    		base.Fatalf("unexpected directory layout:\n"+
    			"	import path: %s\n"+
    			"	root: %s\n"+
    			"	dir: %s\n"+
    			"	expand root: %s\n"+
    			"	expand dir: %s\n"+
    			"	separator: %s",
    			path,
    			filepath.Join(origRoot, "src"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

    # 1: name to be output in yaml
    # 2: encoded map-string-string (which may contain duplicate keys - resulting in map-string-stringarray)
    # 3: key-value separator (defaults to ':')
    # 4: item separator (defaults to ',')
    function yaml-map-string-stringarray {
      declare -r name="${1}"
      declare -r encoded="${2}"
      declare -r kv_sep="${3:-:}"
      declare -r item_sep="${4:-,}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    			},
    			Check: check.Status(http.StatusNotFound),
    		},
    		setupOpts: setHostHeader,
    	})
    
    	// ---------------------------------------------
    	// Usage 1: using `.` as a separator test cases
    	// ---------------------------------------------
    
    	t.RunTraffic(TrafficTestCase{
    		name:             "matched with nested claims:200",
    		targetMatchers:   matchers,
    		workloadAgnostic: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def parts = [Pattern.quote(cacheDir.absolutePath), "[\\w-]+", "transformed"]
            outputDirs(from, to, parts.join(quotedFileSeparator), stream)
        }
    
        private final quotedFileSeparator = Pattern.quote(File.separator)
    
        Set<TestFile> outputDirs(String from, String to, String outputDirPattern, Closure<String> stream = { output }) {
            Set<TestFile> dirs = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		// which terminates the containers
    		delete(terminalPodsToDelete, runningRuntimePod.ID)
    	}
    	return terminalPodsToDelete
    }
    
    // splitPodsByStatic separates a list of desired pods from the pod manager into
    // regular or static pods. Mirror pods are not valid config sources (a mirror pod
    // being created cannot cause the Kubelet to start running a static pod) and are
    // excluded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cmd/server_test.go

    	c.Assert(true, bytes.Equal(buffer2.Bytes(), []byte("hello world")))
    
    	// Test the response when object name ends with a slash.
    	// This is a special case with size as '0' and object ends with
    	// a slash separator, we treat it like a valid operation and
    	// return success.
    	// The response Etag headers should contain Md5Sum of empty string.
    	objectName = "objectwith/"
    	// create HTTP request for object upload.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
    		if workdir == "" {
    			workdir = b.WorkDir
    		}
    		workdir = strings.TrimSuffix(workdir, string(filepath.Separator))
    		if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
    			a = append(a, "-ffile-prefix-map="+workdir+"=/tmp/go-build")
    		} else {
    			a = append(a, "-fdebug-prefix-map="+workdir+"=/tmp/go-build")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top