Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,189 for former (0.12 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    	//
    	// A bracket pair is a pair of characters consisting of an opening
    	// paired bracket and a closing paired bracket such that the
    	// Bidi_Paired_Bracket property value of the former equals the latter,
    	// subject to the following constraints.
    	// - both characters of a pair occur in the same isolating run sequence
    	// - the closing character of a pair follows the opening character
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  2. src/crypto/ed25519/ed25519.go

    	SeedSize = 32
    )
    
    // PublicKey is the type of Ed25519 public keys.
    type PublicKey []byte
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                            continue;
                        }
                        subdir = path;
                    }
                    // When the same module is found in main and test output, the latter is patching the former.
                    addPathElement(JavaPathType.patchModule(moduleName), subdir);
                    addToClasspath = false;
                }
                /*
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/nilcheck.go

    					}
    				case OpNilCheck:
    					ptr := v.Args[0]
    					if nilCheck := nonNilValues[ptr.ID]; nilCheck != nil {
    						// This is a redundant implicit nil check.
    						// Logging in the style of the former compiler -- and omit line 1,
    						// which is usually in generated code.
    						if f.fe.Debug_checknil() && v.Pos.Line() > 1 {
    							f.Warnl(v.Pos, "removed nil check")
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    [[dir:project_root]]
    == Project Root directory
    
    The project root directory contains all source files from your project.
    
    It also contains files and directories Gradle generates, such as `.gradle` and `build`.
    
    While the former are usually checked into source control, the latter are transient files Gradle uses to support features like incremental builds.
    
    The anatomy of a typical project root directory looks as follows:
    
    [listing,subs=+macros]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    The plugin adds some configuration options that allow to customize the IDEA project and module files that it generates. These take the form of both model properties and lower-level mechanisms that modify the generated files directly. For example, you can add source and resource directories, as well as inject your own fragments of XML. The former type of configuration is honored by IDEA's import facility, whereas the latter is not.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/token.go

    			the "init" and "join" commands.
    
    			You don't have to use this command in order to generate a token. You can do so
    			yourself as long as it is in the format "[a-z0-9]{6}.[a-z0-9]{16}". This
    			command is provided for convenience to generate tokens in the given format.
    
    			You can also use "kubeadm init" without specifying a token and it will
    			generate and print one for you.
    		`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. pkg/registry/rbac/rest/storage_rbac.go

    		if err == nil {
    			continue
    		}
    		if !apierrors.IsNotFound(err) {
    			return err
    		}
    
    		// If the source exists, but the target does not,
    		// copy the subjects, labels, and annotations from the former to create the latter.
    		klog.V(1).Infof("copying subjects, labels, and annotations from ClusterRoleBinding %q to template %q", existingBindingName, clusterRoleBindingToCreate.Name)
    		newCRB := clusterRoleBindingToCreate.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    [[sec:automatic_configuration_of_groovyclasspath]]
    == Automatic configuration of groovyClasspath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler.h

      // Resetting the pointer explicitly in the top level destructor.
      // Without this, the pointer would be reset when the AsyncCompilationState
      // is destructed, which is dependent on the order of the members in the
      // DeviceCompiler class, which is error prone if the order changes.
      async_compiler_threads_.reset();
      // TODO(b/110813685): Think about the program ownership model. Programs are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top