Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 87 for hard (0.11 sec)

  1. src/go/parser/parser.go

    // parseSimpleStmt returns true as 2nd result if it parsed the assignment
    // of a range clause (with mode == rangeOk). The returned statement is an
    // assignment with a right-hand side that is a single unary expression of
    // the form "range x". No guarantees are given for the left-hand side.
    func (p *parser) parseSimpleStmt(mode int) (ast.Stmt, bool) {
    	if p.trace {
    		defer un(trace(p, "SimpleStmt"))
    	}
    
    	x := p.parseList(false)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    // several pthreads symbols as weak, but we need to import those. See
    // issue #31912 or https://bugs.llvm.org/show_bug.cgi?id=42442.
    //
    // When doing external linking, we hand everything off to the external
    // linker, which will create its own dynamic symbol tables. For
    // internal linking, this may turn weak imports into strong imports,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    
    At this stage, you can decide to either <<configuration_cache#config_cache:usage:ignore_problems, turn the problems into warnings>> and continue exploring how your build reacts to the configuration cache, or fix the problems at hand.
    
    Let's ignore the reported problem, and run the same build again twice to see what happens when reusing the cached problematic configuration:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//
    	// TODO: can or should we ensure that schedulingCtx gets aborted while
    	// waiting for resources *before* triggering delayed volume
    	// provisioning?  On the one hand, volume provisioning is currently
    	// irreversible, so it better should come last. On the other hand,
    	// triggering both in parallel might be faster.
    	return statusPending(logger, "waiting for resource driver to provide information", "pod", klog.KObj(pod))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    			virtualServiceConfigs: nil,
    			expectedHosts: map[string]map[string]bool{
    				"block_all": {
    					"*": true,
    				},
    			},
    			registryOnly: true,
    		},
    		{
    			name:                  "wild card sidecar config, with non matching virtual service",
    			routeName:             "7443",
    			sidecarConfig:         sidecarConfigWithWildcard,
    			virtualServiceConfigs: []*config.Config{&virtualService5},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. hack/local-up-cluster.sh

    # This script uses docker0 (or whatever container bridge docker is currently using)
    # and we don't know the IP of the DNS pod to pass in as --cluster-dns.
    # To set this up by hand, set this flag and change DNS_SERVER_IP.
    # Note also that you need API_HOST (defined below) for correct DNS.
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-""}
    ENABLE_CLUSTER_DNS=${KUBE_ENABLE_CLUSTER_DNS:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// The next arena is populated as the spans request
    	// memory to hold gcmarkBits for the next GC cycle as well
    	// as allocBits for newly allocated spans.
    	//
    	// The pointer arithmetic is done "by hand" instead of using
    	// arrays to avoid bounds checks along critical performance
    	// paths.
    	// The sweep will free the old allocBits and set allocBits to the
    	// gcmarkBits. The gcmarkBits are replaced with a fresh zeroed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                // ----------------------------------------------------------------------
                // I'm leaving the setting of system properties here as not to break
                // the SystemPropertyProfileActivator. This won't harm embedding. jvz.
                // ----------------------------------------------------------------------
                if (System.getProperty(name) == null) {
                    System.setProperty(name, value);
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            // provider of the value in the Map entry does not need to be unpacked
            0 * sideEffect1.execute("some value")
            // provider of the whole map on the other hand must be unpacked and propagates the side effect
            1 * sideEffect2.execute(["other key": "other value"])
            0 * _
    
            where:
            getter      | _
            "get"       | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  10. src/fmt/fmt_test.go

    			} else {
    				t.Errorf("Sprintf(%q, %v) = %q want %q", tt.fmt, tt.val, s, tt.out)
    			}
    		}
    	}
    }
    
    // TestComplexFormatting checks that a complex always formats to the same
    // thing as if done by hand with two singleton prints.
    func TestComplexFormatting(t *testing.T) {
    	var yesNo = []bool{true, false}
    	var values = []float64{1, 0, -1, posInf, negInf, NaN}
    	for _, plus := range yesNo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
Back to top