Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 266 for gives (0.04 sec)

  1. src/net/dnsclient_unix_test.go

    		}
    	}
    }
    
    // Issue 15434. If a name server gives a lame referral, continue to the next.
    func TestIgnoreLameReferrals(t *testing.T) {
    	defer dnsWaitGroup.Wait()
    
    	conf, err := newResolvConfTest()
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conf.teardown()
    
    	if err := conf.writeAndUpdate([]string{"nameserver 192.0.2.1", // the one that will give a lame referral
    		"nameserver 192.0.2.2"}); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/testing/testing.go

    				return raceErrors
    			}
    			if parent.lastRaceErrors.CompareAndSwap(last, raceErrors) {
    				break
    			}
    		}
    		parent = parent.parent
    	}
    
    	return raceErrors
    }
    
    // callerName gives the function name (qualified with a package path)
    // for the caller after skip frames (where 0 means the current function).
    func callerName(skip int) string {
    	var pc [1]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		i.Endpoint.WorkloadName = "wl"
    		i.Endpoint.Namespace = selector.Name
    	}
    
    	// Creating SE should give us instances
    	createConfigs([]*config.Config{wle, se1}, store, t)
    	events.WaitOrFail(t, "service")
    	expectServiceInstances(t, sd, se1, 0, expected)
    
    	// Create another identical SE (different name) gives us duplicate instances
    	// Arguable whether this is correct or not...
    	createConfigs([]*config.Config{se2}, store, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:renaming_files]]
    === Using `Copyspec.rename{}`
    
    The <<#sec:renaming_files_example,example of how to rename files on copy>> gives you most of the information you need to perform this operation.
    It demonstrates the two options for renaming:
    
    1. Using a regular expression
    2. Using a closure
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    }
    
    // Relocs returns a Relocs object for the given global sym.
    func (l *Loader) Relocs(i Sym) Relocs {
    	r, li := l.toLocal(i)
    	if r == nil {
    		panic(fmt.Sprintf("trying to get oreader for invalid sym %d\n\n", i))
    	}
    	return l.relocs(r, li)
    }
    
    // relocs returns a Relocs object given a local sym index and reader.
    func (l *Loader) relocs(r *oReader, li uint32) Relocs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    		l := f.MustSeek(0, 2)
    		f.MustSeek(0, 0)
    		ldobj(ctxt, f, lib, l, lib.File, lib.File)
    		return
    	}
    
    	/*
    	 * load all the object files from the archive now.
    	 * this gives us sequential file access and keeps us
    	 * from needing to come back later to pick up more
    	 * objects.  it breaks the usual C archive model, but
    	 * this is Go, not C.  the common case in Go is that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/os/os_test.go

    			t.Fatalf("readdirnames %q returned empty slice and no error", file.Name())
    		}
    		names[count] = d[0]
    		count++
    	}
    	return names[0:count]
    }
    
    // Check that reading a directory one entry at a time gives the same result
    // as reading it all at once.
    func TestReaddirnamesOneAtATime(t *testing.T) {
    	t.Parallel()
    
    	// big directory that doesn't change often.
    	dir := "/usr/bin"
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            "rename(Transformer)"       | "rename(org.gradle.internal.Transformers.noOpTransformer())"
        }
    
        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"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            t == failure
        }
    
        def "build dependencies are resolved lazily"() {
            given:
            def configuration = conf()
    
            when:
            configuration.getBuildDependencies()
    
            then:
            0 * _._
        }
    
        def "state indicates failure resolving graph"() {
            given:
            def configuration = conf()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            problems.assertResultHasProblems(result) {
                // TODO - should fail and give some indication to the user why
            }
        }
    
        def "task execution problems are reported and fail the build by default invalidating the cache"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile << """
                task broken {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top