Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,590 for myHost (0.1 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                }
    
                build.dependsOn secondTest
            """
            addDefaultTests()
        }
    
        void addDefaultTests() {
            file("src/test/java/example/MyTest.java") << """
                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/net/lookup_windows_test.go

    		}
    		expected, err := nslookupNS(server)
    		if err != nil {
    			t.Skipf("skipping failed nslookup %s test: %s", server, err)
    		}
    		byHost := func(a, b *NS) int {
    			return strings.Compare(a.Host, b.Host)
    		}
    		slices.SortFunc(expected, byHost)
    		slices.SortFunc(ns, byHost)
    		if !reflect.DeepEqual(expected, ns) {
    			t.Errorf("different results %s:\texp:%v\tgot:%v", toJson(server), toJson(expected), ns)
    		}
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

    configurations {
        conf.incoming.afterResolve {
            distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    
    task resolve {
        dependsOn configurations.conf
        doFirst {
            configurations.conf.files // Trigger `afterResolve`
            assert distributions*.name.contains('myDist')
        }
    }
    
    assert configurations*.name.contains('conf')
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/runtime/mpallocbits.go

    		cur += t
    		if start == notSetYet {
    			start = cur
    		}
    		most = max(most, cur)
    		// Final region that might span to next uint64
    		cur = l
    	}
    	if start == notSetYet {
    		// Made it all the way through without finding a single 1 bit.
    		const n = uint(64 * len(b))
    		return packPallocSum(n, n, n)
    	}
    	most = max(most, cur)
    
    	if most >= 64-2 {
    		// There is no way an internal run of zeros could beat max.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/field/fe_generic.go

    	//     r0 < 2⁷ × 2⁵² × 2⁵²
    	//     r0 < 2¹¹¹
    	//
    	// Moreover, the top coefficient (r4) is at most 107 bits, so c4 is at most
    	// 56 bits, and c4 * 19 is at most 61 bits, which again fits in a uint64 and
    	// allows us to easily apply the reduction identity.
    	//
    	//     r4 = a0×b4 + a1×b3 + a2×b2 + a3×b1 + a4×b0
    	//     r4 < 5 × 2⁵² × 2⁵²
    	//     r4 < 2¹⁰⁷
    	//
    
    	c0 := shiftRightBy51(r0)
    	c1 := shiftRightBy51(r1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseLinkedResource.java

     */
    public interface EclipseLinkedResource {
    
        /**
         * The project-relative path of the linked resource as it appears in the workspace.
         * <p>
         * See the official Eclipse documentation for most up-to-date information on properties of a linked resource
         * <p>
         * For example, a linked resource to a file system folder /some/path/to/someFolder can have a name 'someFolder'
         *
         * @return name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. docs/en/docs/fastapi-people.md

    A round of applause to them. 👏 🙇
    
    ## FastAPI Experts
    
    These are the users that have been [helping others the most with questions in GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}. 🙇
    
    They have proven to be **FastAPI Experts** by helping many others. ✨
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. releasenotes/notes/45415-overlapping-wildcards.yaml

        content: |
          This fix changes the behavior of overlapping wildcard hosts in VirtualService. Previously, the oldest VirtualService would take precedence
          regardless of whether or not it was the most specific host match. Now, the most specific host match will take precedence. To persist the old behavior,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 09 14:22:50 UTC 2023
    - 786 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtils.java

                    continue;
                }
                return method;
            }
            throw new IllegalArgumentException("Cannot find most-specific declaration of method. Declarations checked: " + declaringMethods);
        }
    
        /**
         * Returns whether the most specific of the given methods has been declared in a <code>@</code>{@link Managed} type or not.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/README.md

    ```
    
    ### 3.2 Automatic removal of noncurrent versions keeping only most recent ones after noncurrent days
    
    It is possible to configure automatic removal of older noncurrent versions keeping only the most recent `N` using `NewerNoncurrentVersions`.
    
    e.g, To remove noncurrent versions of all objects keeping the most recent 5 noncurrent versions under the prefix `user-uploads/` 30 days after they become noncurrent ,
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top