Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 305 for easier (0.21 sec)

  1. src/cmd/internal/obj/link.go

    // The same kinds of operands are saved in order so GetFrom3 actually
    // return the first source operand in p.RestArgs.
    // In combination with Prog.From and Prog.To it makes common 3 operand
    // case easier to use.
    func (p *Prog) GetFrom3() *Addr {
    	for i := range p.RestArgs {
    		if p.RestArgs[i].Pos == Source {
    			return &p.RestArgs[i].Addr
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    and the more often you can experiment.
    
    All this means that it’s worth investing some time and effort into making your build as fast as possible.
    This section offers several ways to make a build faster. Additionally, you'll find details about what leads to
    build performance degradation, and how you can avoid it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/docker.md

    Then you could want to have **a single container** with a **process manager** starting **several worker processes** inside.
    
    #### Prometheus and Other Reasons
    
    You could also have **other reasons** that would make it easier to have a **single container** with **multiple processes** instead of having **multiple containers** with **a single process** in each of them.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    The fix is to remove these artifacts from the publication configuration.
    
    [[changes_5.2]]
    == Upgrading from 5.1 and earlier
    
    === Potential breaking changes
    
    none
    
    [[changes_5.1]]
    == Upgrading from 5.0 and earlier
    
    === Deprecations
    
    Follow the API links to learn how to deal with these deprecations (if no extra information is provided here):
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    	// Small changes to the input profile produce large changes to the golden output
    	// files. This makes it difficult to spot meaningful changes in pull requests.
    	// By default we hide these changes to make developers life's a bit easier. However,
    	// it is still useful to sometimes override this behavior and show the full diff.
    	// When this flag is true, use an alternative file suffix that is not hidden by
    	// default GitHub in pull requests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    However, Gradle still supports compiling, testing, generating Javadocs and executing applications for Java 6 and Java 7.
    Java 5 and below are not supported.
    
    NOTE: If using Java 10+, leveraging the `release` flag might be an easier solution, see above.
    
    To use Java 6 or Java 7, the following tasks need to be configured:
    
    * `JavaCompile` task to fork and use the correct Java home
    * `Javadoc` task to use the correct `javadoc` executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/binder.go

    		}
    	}()
    
    	var (
    		staticBindings    []*BindingInfo
    		dynamicProvisions []*v1.PersistentVolumeClaim
    	)
    	defer func() {
    		// Although we do not distinguish nil from empty in this function, for
    		// easier testing, we normalize empty to nil.
    		if len(staticBindings) == 0 {
    			staticBindings = nil
    		}
    		if len(dynamicProvisions) == 0 {
    			dynamicProvisions = nil
    		}
    		podVolumes.StaticBindings = staticBindings
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway.go

    		// they are created in MergeGatways only when the flag is set. So when it is turned off, the
    		// MergedQUICTransportServers would be nil so that no listener would be created. It is written this way
    		// to make testing a little easier.
    		transportToServers := map[istionetworking.TransportProtocol]map[model.ServerPort]*model.MergedServers{
    			istionetworking.TransportProtocolTCP:  mergedGateway.MergedServers,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  9. pkg/kubelet/status/status_manager.go

    			panic(err)
    		}
    		m.state = stateImpl
    	}
    
    	// Don't start the status manager if we don't have a client. This will happen
    	// on the master, where the kubelet is responsible for bootstrapping the pods
    	// of the master components.
    	if m.kubeClient == nil {
    		klog.InfoS("Kubernetes client is nil, not starting status manager")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  10. src/runtime/time.go

    // acquire ts.lock at the same time, because we know that
    // t is not in any ts.heap, so nothing holding a ts.lock would
    // be acquiring the t.lock at the same time, meaning there
    // isn't a possible deadlock. But it is easier and safer not to be
    // too clever and respect the static ordering.
    // (If we don't, we have to change the static lock checking of t and ts.)
    //
    // Concurrent calls to time.Timer.Reset or blockTimerChan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top