Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 318 for SAME (0.18 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

         * server address, the canonical representation of the URL, and does not
         * compare authentication information. In essence, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
         * @return A hashcode for this abstract file
         */
        @Override
        public int hashCode () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

        }
    
        def "renaming 2 different source files to the same name in the dest dir should give a clear error"() {
            given: "a directory with a file"
            def unzippedDir = file("before/files")
            def unzippedFile = unzippedDir.file("sub/c.txt").touch()
    
            and: "another directory with the same file"
            def unzippedDir2 = file("before2/files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    				"inbound|8081||": {string(service.Hostname)},
    			},
    		},
    		{
    			name:     "multiple services with same service port, different target",
    			services: []*model.Service{service, serviceAlt},
    			instances: flattenInstances(
    				makeInstances(proxy, service, 80, 8080),
    				makeInstances(proxy, service, 81, 8081),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The Test tasks creates XML files describing the test results, in the “JUnit XML” pseudo standard.
    This standard is used by the JUnit 4, JUnit Jupiter, and TestNG test frameworks, and is configured using the same DSL block for each of these.
    It is common for CI servers and other tooling to observe test results via these XML files.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    A discrepancy has been reported in their behavior: if the same failing test is executed, `BuildLauncher` will report a build failure but `TestLauncher` won't.
    Originally, this was a design decision in order to continue the execution and run the tests in all test tasks and not stop at the first failure.
    At the same time, this behavior can be confusing for users as they can experience a failing test in a successful build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // Build a FunctionDef for each subgraph, and add it 'library'. The values of
      // the 'group_attribute' annotations become the function names.
      // If 'reuse_existing_functions' is set, use an existing function with the
      // same name, if any.
      // If 'rewrite_subgraph_fn' is set, it is applied to each subgraph before
      // function conversion.
      Status BuildFunctionDefs(const RewriteSubgraphFn& rewrite_subgraph_fn,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    		return nil
    	}
    	job, err := jm.jobLister.Jobs(namespace).Get(controllerRef.Name)
    	if err != nil {
    		return nil
    	}
    	if job.UID != controllerRef.UID {
    		// The controller we found with this Name is not the same one that the
    		// ControllerRef points to.
    		return nil
    	}
    	return job
    }
    
    // When a pod is created, enqueue the controller that manages it and update its expectations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org.utils", "optional-lib", '5.0').publish()
    
            //above models the scenario where org.utils:api and org.utils:impl are libraries that must be resolved with the same version
            //however due to the conflict resolution, org.utils:api:1.5 and org.utils.impl:1.3 are resolved.
    
            buildFile << """
                $common
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    			creates: []config.Config{},
    			updates: []config.Config{},
    			deletes: []ConfigKey{{Kind: kind.EnvoyFilter, Name: "default-priority", Namespace: "testns"}},
    		},
    		{
    			name: "create and delete one same namespace",
    			creates: []config.Config{
    				{
    					Meta: config.Meta{Name: "default-priority-2", Namespace: "testns", GroupVersionKind: gvk.EnvoyFilter},
    					Spec: &networking.EnvoyFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	// Everything in that directory, and any target-specific
    	// additions.
    	files := xreaddir(dir)
    
    	// Remove files beginning with . or _,
    	// which are likely to be editor temporary files.
    	// This is the same heuristic build.ScanDir uses.
    	// There do exist real C files beginning with _,
    	// so limit that check to just Go files.
    	files = filter(files, func(p string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top