Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for TargetName (0.19 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

                    // TODO - should use the _install_ task for an executable
                    final String targetName = StringUtils.capitalize(component.getBaseName().get());
                    final XcodeTarget target = newTarget(targetName, targetName, toGradleCommand(project), getBridgeTaskPath(project), sources);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

            try {
                String targetName = getTarget();
                byte[] challenge = getChallenge();
                byte[] context = getContext();
                byte[] targetInformation = getTargetInformation();
                int flags = getFlags();
                byte[] target = new byte[0];
                if ((flags & NTLMSSP_REQUEST_TARGET) != 0) {
                    if (targetName != null && targetName.length() != 0) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.6K bytes
    - Viewed (0)
  3. pkg/volume/util/device_util_linux.go

    			targetNamePath := sessionPath + "/iscsi_session/" + sessionName + "/targetname"
    			targetName, err := io.ReadFile(targetNamePath)
    			if err != nil {
    				klog.Infof("Failed to process session %s, assuming this session is unavailable: %s", sessionName, err)
    				continue
    			}
    
    			// Ignore hosts that don't matchthe target we were looking for.
    			if strings.TrimSpace(string(targetName)) != targetIqn {
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  4. tests/integration/ambient/testdata/wasm-filter.yaml

      {{- if .WasmPluginVersion }}
      annotations:
        wasmPluginVersion: {{ .WasmPluginVersion }}
      {{- end }}
    spec:
      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultAntBuilder.java

            List<String> taskDependencyNames = new LinkedList<>();
            while (dependencies.hasMoreElements()) {
                String targetName = dependencies.nextElement();
                String taskName = taskNamer.transform(targetName);
                taskDependencyNames.add(taskName);
            }
            return taskDependencyNames;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    	}
    
    	messageTests := []struct {
    		name       string
    		targetName string
    		err        string
    	}{{
    		name:       "name needs to be fully qualified, i.e., contains at least 2 dots",
    		targetName: "k8s.io",
    		err:        "should be a domain with at least three segments separated by dots",
    	}, {
    		name:       "name should not include scheme",
    		targetName: "http://foo.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. src/net/resolverdialfunc_test.go

    func (w SRVWriter) AddSRV(priority, weight, port uint16, target string) error {
    	targetName, err := dnsmessage.NewName(target)
    	if err != nil {
    		return err
    	}
    	w.a.wrote = true
    	err = w.a.builder.SRVResource(w.header(), dnsmessage.SRVResource{
    		Priority: priority,
    		Weight:   weight,
    		Port:     port,
    		Target:   targetName,
    	})
    	if err != nil {
    		panic(err) // internal fault, not user
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

                }
            }
    
            if (targetPattern.equals("*")) {
                for (String targetName : targetComponent.getConfigurationNames()) {
                    ConfigurationGraphResolveState configuration = targetComponent.getConfiguration(targetName);
                    if (configuration.getMetadata().isVisible()) {
                        maybeAddConfiguration(targetConfigurations, configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppBasePluginTest.groovy

            def publications = project.services.get(ProjectPublicationRegistry).getPublications(NativeProjectPublication, project.identityPath)
            publications.size() == 1
            publications.first().getCoordinates(SwiftPmTarget).targetName == "SomeApp"
        }
    
        class TestPlatformToolProvider extends AbstractPlatformToolProvider {
            TestPlatformToolProvider() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleKotlinDslIntegrationTest.kt

            withFile(
                "common.gradle.kts",
                """
                fun Project.targetName() = "Project"
                fun Settings.targetName() = "Settings"
                println("Target is " + targetName())
                """
            )
    
            withSettings(
                """
                apply(from = "common.gradle.kts")
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top