Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 9,318 for haxe (0.06 sec)

  1. src/debug/macho/reloctype_string.go

    package macho
    
    import "strconv"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[GENERIC_RELOC_VANILLA-0]
    	_ = x[GENERIC_RELOC_PAIR-1]
    	_ = x[GENERIC_RELOC_SECTDIFF-2]
    	_ = x[GENERIC_RELOC_PB_LA_PTR-3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:24:07 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ResourceFilterMatcher.java

     * of built-in matchers and it is possible to specify the id and arguments for custom
     * matchers using this model.
     * <p>
     * A matcher must have an id.  It may have either a custom string argument or a set of nested
     * child matchers (e.g. an 'or' matcher will have several nested condition matchers).
     * <p>
     * For more documentation on usage with examples, see {@link ResourceFilter}.
     *
     * @since 3.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/preflight/checks_test.go

    	if result {
    		t.Fatal("checkConnection should not have succeeded")
    	}
    }
    
    func TestCheckEtcdServersEmpty(t *testing.T) {
    	etcd := new(EtcdConnection)
    	result, err := etcd.CheckEtcdServers()
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if result {
    		t.Fatal("CheckEtcdServers should not have succeeded")
    	}
    }
    
    func TestCheckEtcdServersUri(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 01 21:37:52 UTC 2017
    - 2.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/debugging.md

    ```
    
    </div>
    
    then the internal variable `__name__` in your file, created automatically by Python, will have as value the string `"__main__"`.
    
    So, the section:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    will run.
    
    ---
    
    This won't happen if you import that module (file).
    
    So, if you have another file `importer.py` with:
    
    ```Python
    from myapp import app
    
    # Some more code
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 22 17:04:16 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureEnumTest.java

    import java.lang.reflect.Method;
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /**
     * Since annotations have some reusability issues that force copy and paste all over the place, it's
     * worth having a test to ensure that all our Feature enums have their annotations correctly set up.
     *
     * @author George van den Driessche
     */
    public class FeatureEnumTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/subject_locator.go

    			rules, err := r.roleToRuleMapper.GetRoleReferenceRules(clusterRoleBinding.RoleRef, "")
    			if err != nil {
    				// if we have an error, just keep track of it and keep processing.  Since rules are additive,
    				// missing a reference is bad, but we can continue with other rolebindings and still have a list
    				// that does not contain any invalid values
    				errorlist = append(errorlist, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IsolatingFilerTest.groovy

        }
    
        def "does a full rebuild when no originating elements are given for a resource"() {
            when:
            filer.createResource(StandardLocation.SOURCE_OUTPUT, "", "foo.txt")
    
            then:
            result.fullRebuildCause == "the generated resource 'foo.txt in SOURCE_OUTPUT' must have exactly one originating element, but had 0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/assignments.go

    			s = "unknown type"
    		case isUntyped(t):
    			if isNumeric(t) {
    				// Do not imply a specific type requirement:
    				// "have number, want float64" is better than
    				// "have untyped int, want float64" or
    				// "have int, want float64".
    				s = "number"
    			} else {
    				// If we don't have a number, omit the "untyped" qualifier
    				// for compactness.
    				s = strings.Replace(t.(*Basic).name, "untyped ", "", -1)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/go/doc/testdata/bugpara.0.golden

    // 
    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
  10. src/go/doc/testdata/bugpara.2.golden

    // 
    PACKAGE bugpara
    
    IMPORTPATH
    	testdata/bugpara
    
    FILENAMES
    	testdata/bugpara.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	Sometimes bugs have multiple paragraphs.
    	
    	Like this one.
    
    
    BUGS
    BUG(rsc)	Sometimes bugs have multiple paragraphs.
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 275 bytes
    - Viewed (0)
Back to top