Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,168 for Equate (0.13 sec)

  1. gradle/libs.versions.toml

    androidx-junit = "androidx.test.ext:junit:1.1.5"
    androidx-test-runner = "androidx.test:runner:1.5.2"
    animalsniffer-annotations = "org.codehaus.mojo:animal-sniffer-annotations:1.23"
    aqute-resolve = { module = "biz.aQute.bnd:biz.aQute.resolve", version.ref = "biz-aQute-bnd" }
    assertk = "com.willowtreeapps.assertk:assertk:0.28.0"
    bouncycastle-bcpkix = { module = "org.bouncycastle:bcpkix-jdk15to18", version.ref = "org-bouncycastle" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                builder.append(Pattern.quote(matcher.group()));
                builder.append("[\\p{javaLowerCase}\\p{Digit}]*");
                pos = matcher.end();
            }
            builder.append(Pattern.quote(name.substring(pos)));
            return Pattern.compile(builder.toString());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/CommandLineJavaCompilerArgumentsGeneratorTest.groovy

            and: "args file contains remaining arguments (one per line, quoted)"
            argsFile.readLines() == ["-g", "-sourcepath", quote(""), "-proc:none", USE_UNSHARED_COMPILER_TABLE_OPTION, "-classpath", quote("${spec.compileClasspath.join(File.pathSeparator)}"), *(spec.sourceFiles*.path.collect { quote(it) })]
        }
    
        String defaultEmptySourcePathRefFolder() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/import_test.go

    		m: module.Version{
    			Path: "golang.org/x/text",
    		},
    	},
    	{
    		path: "github.com/rsc/quote/buggy",
    		m: module.Version{
    			Path:    "github.com/rsc/quote",
    			Version: "v1.5.2",
    		},
    	},
    	{
    		path: "github.com/rsc/quote",
    		m: module.Version{
    			Path:    "github.com/rsc/quote",
    			Version: "v1.5.2",
    		},
    	},
    	{
    		path: "golang.org/x/foo/bar",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 15:29:06 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. manifests/charts/gateway/templates/deployment.yaml

            app.kubernetes.io/name: {{ include "gateway.name" . }}
            app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
            {{- range $key, $val := .Values.labels }}
            {{- if and (ne $key "app") (ne $key "istio") }}
            {{ $key | quote }}: {{ $val | quote }}
            {{- end }}
            {{- end }}
        spec:
          {{- with .Values.imagePullSecrets }}
          imagePullSecrets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/dist/quoted.go

    		}
    		if len(s) == 0 {
    			break
    		}
    		// Accepted quoted string. No unescaping inside.
    		if s[0] == '"' || s[0] == '\'' {
    			quote := s[0]
    			s = s[1:]
    			i := 0
    			for i < len(s) && s[i] != quote {
    				i++
    			}
    			if i >= len(s) {
    				return nil, fmt.Errorf("unterminated %c string", quote)
    			}
    			f = append(f, s[:i])
    			s = s[i+1:]
    			continue
    		}
    		i := 0
    		for i < len(s) && !isSpaceByte(s[i]) {
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_fileproxy_vcs_missing_issue51589.txt

    -- $WORK/x/go.mod --
    module example.com/mod
    
    go 1.17
    
    require rsc.io/quote v1.5.2
    
    require (
    	golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
    	rsc.io/sampler v1.3.0 // indirect
    )
    
    -- $WORK/x/x.go --
    package mod
    
    import (
    	"fmt"
    
    	"rsc.io/quote"
    )
    
    func Echo() {
    	fmt.Println(quote.Hello())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 990 bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
              {{- range $gateway.configVolumes }}
              {{- if .mountPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

              {{- end }}
              {{- range $key, $val := $gateway.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              volumeMounts:
              {{- range $gateway.secretVolumes }}
              - name: {{ .name }}
                mountPath: {{ .mountPath | quote }}
                readOnly: true
              {{- end }}
              {{- range $gateway.configVolumes }}
              {{- if .mountPath }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/internal/NameMatcher.java

                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                builder.append(Pattern.quote(matcher.group()));
                builder.append("[\\p{javaLowerCase}\\p{Digit}]*");
                pos = matcher.end();
            }
            builder.append(Pattern.quote(name.substring(pos)));
            return Pattern.compile(builder.toString());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top