Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for confuse (0.13 sec)

  1. src/cmd/link/internal/ld/data.go

    			}
    			newtextp = append(newtextp, ctxt.tramps[i:ntramps]...)
    
    			ctxt.Textp = newtextp
    		}
    	}
    
    	// Add MinLC size after etext, so it won't collide with the next symbol
    	// (which may confuse some symbolizer).
    	sect.Length = va - sect.Vaddr + uint64(ctxt.Arch.MinLC)
    	ldr.SetSymSect(etext, sect)
    	if ldr.SymValue(etext) == 0 {
    		// Set the address of the start/end symbols, if not already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/cmd/go/internal/work/exec.go

    			return true
    		}
    	}
    	return false
    }
    
    // cCompilerEnv returns environment variables to set when running the
    // C compiler. This is needed to disable escape codes in clang error
    // messages that confuse tools like cgo.
    func (b *Builder) cCompilerEnv() []string {
    	return []string{"TERM=dumb"}
    }
    
    // mkAbs returns an absolute path corresponding to
    // evaluating f in the directory dir.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

      FunctionLibraryDefinition flib_def(OpRegistry::Global(),
                                         FunctionDefLibrary());
      GraphExportConfig confs;
      auto graph = std::make_unique<Graph>(flib_def);
      absl::flat_hash_set<Node*> control_ret_nodes;
      Status status = tensorflow::tf2xla::v2::ConvertMlirToGraph(
          module_in, confs, &graph, &flib_def, &control_ret_nodes);
      if (!status.ok()) {
        mlir::emitError(mlir::UnknownLoc::get(&ctx)) << status.message();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

     * on single thread, keeping the listener logic simple. This listener also blocks on last transfer event to allow
     * output to perform possible cleanup. It spawns a daemon thread to consume queued events that may fall in even
     * concurrently.
     *
     * @since 4.0.0
     */
    public final class SimplexTransferListener extends AbstractTransferListener {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/certcontroller.go

    	s.istiodCertBundleWatcher.SetAndNotify(keyPEM, certChain, caBundle)
    	return nil
    }
    
    // initFileCertificateWatches sets up watches for the plugin dns certs
    // when /var/run/secrets/istiod/tls is used. Not to be confused with the /etc/cacerts path.
    func (s *Server) initFileCertificateWatches(tlsOptions TLSOptions) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                this.project = project;
                return this;
            }
    
            /**
             * Sets the root artifact for the dependency graph.
             * This must not be confused with {@link #root(DependencyCoordinate)}: The root dependency, like any
             * other specified dependency, will be subject to dependency collection/resolution, i.e. should have an artifact
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *
         * @param node the dependency node
         * @param dep the dependency for the given node, or {@code null} if none
         * @param filter filter the paths accepted by the tool which will consume the path.
         * @param path the path to the dependency, or {@code null} if the dependency was null
         * @throws IOException if an error occurred while reading module information
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/time/format.go

    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		// Consume [0-9]*
    		pl := len(s)
    		v, s, err = leadingInt(s)
    		if err != nil {
    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    		pre := pl != len(s) // whether we consumed anything before a period
    
    		// Consume (\.[0-9]*)?
    		post := false
    		if s != "" && s[0] == '.' {
    			s = s[1:]
    			pl := len(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

      HBONE = 1;
      // Future options may include things like QUIC/HTTP3, etc.
    }
    
    // ApplicationProtocol specifies a workload  (application or gateway) can
    // consume tunnel information.
    message ApplicationTunnel {
      enum Protocol {
        // Bytes are copied from the inner stream without modification.
        NONE = 0;
    
        // Prepend PROXY protocol headers before copying bytes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. cmd/metacache-entries.go

    				// We may be in a situation where we have a directory and an object with the same name.
    				// In that case we will drop the directory entry.
    				// This should however not be confused with an object with a trailing slash.
    				dirMatches := best.isDir() == other.isDir()
    				suffixMatches := strings.HasSuffix(best.name, slashSeparator) == strings.HasSuffix(other.name, slashSeparator)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top