Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,053 for haxe (0.1 sec)

  1. src/cmd/compile/internal/types2/unify.go

    			return u.nify(x.elem, y.elem, emode, p)
    		}
    
    	case *Struct:
    		// Two struct types unify if they have the same sequence of fields,
    		// and if corresponding fields have the same names, their (field) types unify,
    		// and they have identical tags. Two embedded fields are considered to have the same
    		// name. Lower-case field names from different packages are always different.
    		if y, ok := y.(*Struct); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/get-current-user.md

    Do you want to have an `id` and `email` and not have any `username` in your model? Sure. You can use these same tools.
    
    Do you want to just have a `str`? Or just a `dict`? Or a database class model instance directly? It all works the same way.
    
    You actually don't have users that log in to your application but robots, bots, or other systems, that have just an access token? Again, it all works the same.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source_test.go

    	defer testCancel()
    	require.NoError(t, testContext.Start())
    
    	require.Len(t, testContext.Source.Hooks(), 1, "should have one policy")
    	require.Len(t, testContext.Source.Hooks()[0].Bindings, 1, "should have one binding")
    	require.Equal(t, "binding1", testContext.Source.Hooks()[0].Bindings[0].GetName(), "should have one binding")
    
    	// Change the binding to another policy (policies without bindings should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * </p>
         *
         * <p>
         * This method can't be used to specify that a property does not have a default value. Passing in a {@code null}
         * provider will result in an {@code IllegalArgumentException} being thrown. When the provider doesn't have
         * a value, then the property will behave as if it wouldn't have a convention specified.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. docs/en/docs/fastapi-people.md

    {% endfor %}
    
    </div>
    {% endif %}
    
    ## Top Contributors
    
    Here are the **Top Contributors**. 👷
    
    These users have [created the most Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank} that have been *merged*.
    
    They have contributed source code, documentation, translations, etc. 📦
    
    {% if people %}
    <div class="user-list user-list-center">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. hack/golangci-strict.yaml

          path-except: cmd/kubeadm
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/README.md

    We have been working inside Google on a fork of Go that uses
    BoringCrypto (the core of [BoringSSL](https://boringssl.googlesource.com/boringssl/))
    for various crypto primitives, in furtherance of some work related to FIPS 140.
    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/BuildListener.java

        /**
         * <p>Called when the build settings have been loaded and evaluated. The settings object is fully configured and is
         * ready to use to load the build projects.</p>
         *
         * @param settings The settings. Never null.
         */
        void settingsEvaluated(Settings settings);
    
        /**
         * <p>Called when the projects for the build have been created from the settings. None of the projects have been
         * evaluated.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

            collector.add(WithConstructor.getDeclaredField("value"), "should accept an int")
            collector.add(SuperClass.getDeclaredField("value"), "cannot have fields")
    
            expect:
            collector.format() == """Type ${fullyQualifiedNameOf(WithConstructor)} is not a valid <thing>:
    - Field value is not valid: should have an initializer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/go/doc/comment/std_test.go

    		if !strings.Contains(pkg, "/") {
    			list = append(list, pkg)
    		}
    	}
    	slices.Sort(list)
    
    	have := strings.Join(stdPkgs, "\n") + "\n"
    	want := strings.Join(list, "\n") + "\n"
    	if have != want {
    		t.Errorf("stdPkgs is out of date: regenerate with 'go generate'\n%s", diff.Diff("stdPkgs", []byte(have), "want", []byte(want)))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 825 bytes
    - Viewed (0)
Back to top