Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,777 for whereas (0.21 sec)

  1. src/go/ast/scope.go

    // correctly computed without type information. For example, the
    // expression T{K: 0} may denote a struct, map, slice, or array
    // literal, depending on the type of T. If T is a struct, then K
    // refers to a field of T, whereas for the other types it refers to a
    // value in the environment.
    //
    // New programs should set the [parser.SkipObjectResolution] parser
    // flag to disable syntactic object resolution (which also saves CPU
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_libinit.c

    		while (__atomic_load_n(&runtime_init_done, __ATOMIC_CONSUME) == 0) {
    			pthread_cond_wait(&runtime_init_cond, &runtime_init_mu);
    		}
    
    		// The key and x_cgo_pthread_key_created are for the whole program,
    		// whereas the specific and destructor is per thread.
    		if (x_cgo_pthread_key_created == 0 && pthread_key_create(&pthread_g, pthread_key_destructor) == 0) {
    			x_cgo_pthread_key_created = 1;
    		}
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. docs/erasure/README.md

    ## Why is Erasure Code useful?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                Calico-controlled \tendpoints that do have the label “my_label”.
                                \n The effect is that the latter will accept packets from
                                non-Calico sources whereas the former is limited to packets
                                from Calico-controlled endpoints."
                              type: string
                            serviceAccounts:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # For this module, the dependency providing package
    # example.net/ambiguous/nested/pkg is unambiguous in Go 1.17 (because only one
    # root of the module graph contains the package), whereas it is ambiguous in
    # Go 1.16 (because two different modules contain plausible packages and Go 1.16
    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

     * attributes of this artifact.
     *
     * TODO I think this exposes a design flaw in that the immutable and mutable parts of an artifact are in one class and
     * should be split. ie scope, file, etc depend on the context of use, whereas everything else is immutable.
     */
    @Deprecated
    public class ActiveProjectArtifact implements Artifact {
        private final Artifact artifact;
    
        private final MavenProject project;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/v1/PrecompiledScriptTemplates.kt

     * ```
     *
     * Thus, the script `src/main/kotlin/code-quality.gradle.kts` would be exposed as the `code-quality`
     * plugin (assuming it has no package declaration) whereas the script
     * `src/main/kotlin/gradlebuild/code-quality.gradle.kts` would be exposed as the `gradlebuild.code-quality`
     * plugin, again assuming it has the matching package declaration.
     */
    @ScriptTemplateDefinition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                    str = new String( src, srcIndex, len, UNI_ENCODING );
                } else {
        
                    /* On NT without Unicode the fileNameLength
                     * includes the '\0' whereas on win98 it doesn't. I
                     * guess most clients only support non-unicode so
                     * they don't run into this.
                     */
        
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/svn.go

    // "vcwebsvn=1".
    //
    // We take this approach because the 'svn' protocol is implemented by a
    // lightweight 'svnserve' binary that is usually packaged along with the 'svn'
    // client binary, whereas only known implementation of the Subversion HTTP
    // protocol is the mod_dav_svn apache2 module. Apache2 has a lot of dependencies
    // and also seems to rely on global configuration via well-known file paths, so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  10. security/pkg/server/ca/authenticate/oidc_test.go

    			ctx = metadata.NewIncomingContext(ctx, md)
    
    			actualCaller, err := authenticator.Authenticate(security.AuthContext{GrpcContext: ctx})
    			gotErr := err != nil
    			if gotErr != tc.expectErr {
    				t.Errorf("gotErr (%v) whereas expectErr (%v)", gotErr, tc.expectErr)
    			}
    			if gotErr {
    				return
    			}
    			expectedCaller := &security.Caller{
    				AuthSource: security.AuthSourceIDToken,
    				Identities: []string{tc.expectedID},
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top