Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for cunit (0.07 sec)

  1. src/cmd/go/internal/work/exec.go

    	// "DWARF2 only supports one section per compilation unit".
    	// This warning makes no sense, since the section is empty,
    	// but it confuses people.
    	// We work around the problem by detecting the warning
    	// and dropping -g and trying again.
    	if bytes.Contains(output, []byte("DWARF2 only supports one section per compilation unit")) {
    		newFlags := make([]string, 0, len(flags))
    		for _, f := range flags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      echo "KUBE_COVERAGE_FILE=\"/var/log/kubelet.cov\"" >> "${kubelet_env_file}"
    
      # Write the systemd service file for kubelet.
      cat <<EOF >/etc/systemd/system/kubelet.service
    [Unit]
    Description=Kubernetes kubelet
    Requires=network-online.target
    After=network-online.target
    
    [Service]
    Restart=always
    RestartSec=10
    EnvironmentFile=${kubelet_env_file}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/resolver/FirStandaloneNormalAnalysisSourceModuleResolveCandidatesTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.resolver.AbstractResolveCandidatesTest;
    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 215.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let hasFolder = 1;
    }
    
    def TFL_EluOp: TFL_Op<"elu", [
        Pure,
        SameOperandsAndResultShape,
        TFL_SameFirstOperandAndFirstResultElementType]> {
      let summary = "Exponential Linear Unit operator";
      let description = [{
        Computes the exponential linear
          f(x) -> exp(x) - 1 for x < 0, x for x >= 0.
        element-wise.
      }];
    
      let arguments = (ins TFL_TensorOf<[F32, I8]>:$x);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    			w.Header().Set("Content-Type", "application/json")
    			klog.V(5).Infof("%v: returning: %+v", r.URL, *openIDConfig)
    			w.Write([]byte(*openIDConfig))
    		// These claims are tested in the unit tests.
    		case "/groups":
    			fallthrough
    		case "/rabbits":
    			if claimToResponseMap == nil {
    				t.Errorf("no claims specified in response")
    			}
    			claim := r.URL.Path[1:] // "/groups" -> "groups"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    // isbitcon reports whether a constant can be encoded into a logical instruction.
    // bitcon has a binary form of repetition of a bit sequence of length 2, 4, 8, 16, 32, or 64,
    // which itself is a rotate (w.r.t. the length of the unit) of a sequence of ones.
    // special cases: 0 and -1 are not bitcon.
    // this function needs to run against virtually all the constants, so it needs to be fast.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status_test.go

    			LastTransitionTime: metav1.Time{},
    		}
    		assert.True(t, apiequality.Semantic.DeepEqual(expectedNode, updatedNode), "%s", cmp.Diff(expectedNode, updatedNode))
    	}
    
    	// TODO(random-liu): Refactor the unit test to be table driven test.
    	// Should report kubelet not ready if the runtime check is out of date
    	clock.SetTime(time.Now().Add(-maxWaitForContainerRuntime))
    	kubelet.updateRuntimeUp()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  8. go.sum

    github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
    github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
    github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU=
    github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    				o = ldr.SymValue(rs) - int64(ldr.SymSect(rs).Vaddr) + r.Add()
    			}
    
    		case objabi.R_ADDRCUOFF:
    			// debug_range and debug_loc elements use this relocation type to get an
    			// offset from the start of the compile unit.
    			o = ldr.SymValue(rs) + r.Add() - ldr.SymValue(loader.Sym(ldr.SymUnit(rs).Textp[0]))
    
    		// r.Sym() can be 0 when CALL $(constant) is transformed from absolute PC to relative PC call.
    		case objabi.R_GOTPCREL:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// sorts them by Timestamps if they have the same Pod Priority).
    			// Using a fake clock for the queue and incrementing it after each added Pod will
    			// solve this issue on Windows unit test runs.
    			// For more details on the Windows clock resolution issue, see: https://github.com/golang/go/issues/8687
    			for _, p := range test.initialPods {
    				q.Add(logger, p)
    				fakeClock.Step(time.Second)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top