Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 944 for has_name (0.13 sec)

  1. tools/go-compile-verbose

    }
    
    GROOT="$(go env GOROOT)"
    GPATH="$(go env GOPATH)"
    GMODCACHE="$(go env GOMODCACHE)"
    ROOT="$PWD"
    
    $@
    ls="$(basename $1)"
    shift
    case "$ls" in
      link)
        log "${ls}\t$(basename ${2})" ;;
      compile)
        f=${@: -1}
        if [[ "$f" =~ "$GMODCACHE" ]]; then
          base="${f/"$GMODCACHE"\//}"
          mod="$(<<< "$base" cut -d@ -f1)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

        }
    
        @Override
        protected void configureTaskDefaults(Pmd task, String baseName) {
            Configuration configuration = project.getConfigurations().getAt(getConfigurationName());
            configureTaskConventionMapping(configuration, task);
            configureReportsConventionMapping(task, baseName);
            configureToolchains(task);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/constants.go

    //go:build unix
    
    package unix
    
    const (
    	R_OK = 0x4
    	W_OK = 0x2
    	X_OK = 0x1
    
    	// NoFollowErrno is the error returned from open/openat called with
    	// O_NOFOLLOW flag, when the trailing component (basename) of the path
    	// is a symbolic link.
    	NoFollowErrno = noFollowErrno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 434 bytes
    - Viewed (0)
  4. src/encoding/json/scanner_test.go

    	return strings.Map(func(r rune) rune {
    		if r == ' ' || r == '\n' || r == '\r' || r == '\t' {
    			return -1
    		}
    		return r
    	}, s)
    }
    
    func TestValid(t *testing.T) {
    	tests := []struct {
    		CaseName
    		data string
    		ok   bool
    	}{
    		{Name(""), `foo`, false},
    		{Name(""), `}{`, false},
    		{Name(""), `{]`, false},
    		{Name(""), `{}`, true},
    		{Name(""), `{"foo":"bar"}`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            when:
            project.pluginManager.apply(CppApplicationPlugin)
    
            then:
            project.application instanceof CppApplication
            project.application.baseName.get() == "testApp"
            project.application.cppSource.files == [src] as Set
        }
    
        def "registers a component for the application"() {
            when:
            project.pluginManager.apply(CppApplicationPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

        }
    
        private ComponentWithOutputs binary(String name, String taskName) {
            def outputs = fileCollection(taskName)
            def binary = Stub(TestBinary)
            binary.name >> name
            binary.names >> Names.of(name)
            binary.outputs >> outputs
            return binary
        }
    
        private FileCollection fileCollection(String taskName) {
            def installTask = Stub(Task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

      private final String relationshipName;
      private final String hashName;
      private final ItemReporter itemReporter;
      private final List<ImmutableList<T>> groups = Lists.newArrayList();
    
      RelationshipTester(
          Equivalence<? super T> equivalence,
          String relationshipName,
          String hashName,
          ItemReporter itemReporter) {
        this.equivalence = checkNotNull(equivalence);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    			},
    		},
    	}
    
    	services1 = []*Service{
    		{
    			Hostname: "bar",
    		},
    	}
    
    	services2 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    port8000,
    		},
    		{
    			Hostname: "barprime",
    		},
    	}
    
    	services3 = []*Service{
    		{
    			Hostname: "bar",
    			Ports:    port9000,
    		},
    		{
    			Hostname: "barprime",
    		},
    	}
    
    	services4 = []*Service{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        }
      }
    
      /** Returns true if [certificate] matches [hostname]. */
      private fun verifyHostname(
        hostname: String,
        certificate: X509Certificate,
      ): Boolean {
        val hostname = hostname.asciiToLowercase()
        return getSubjectAltNames(certificate, ALT_DNS_NAME).any {
          verifyHostname(hostname, it)
        }
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. pkg/registry/discovery/endpointslice/strategy_test.go

    			v1Request: true,
    			newEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{Hostname: ptr.To("hostname-1")},
    					{Hostname: ptr.To("hostname-1")},
    				},
    			},
    			expectedEPS: &discovery.EndpointSlice{
    				Endpoints: []discovery.Endpoint{
    					{Hostname: ptr.To("hostname-1")},
    					{Hostname: ptr.To("hostname-1")},
    				},
    			},
    		},
    		{
    			name: "v1beta1 request, without deprecated topology",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top