Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 151 for splitLine (0.13 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io_openapi.json

                "type": "string"
              },
              "version": {
                "default": "",
                "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
                "type": "string"
              }
            },
            "required": [
              "groupVersion",
              "version"
            ],
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__policy_openapi.json

                "type": "string"
              },
              "version": {
                "default": "",
                "description": "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.",
                "type": "string"
              }
            },
            "required": [
              "groupVersion",
              "version"
            ],
            "type": "object"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator.go

    		}
    
    		// Retrieve the pod object from pod informer with the namespace key
    		namespace, name, err := kcache.SplitMetaNamespaceKey(dswPodKey)
    		if err != nil {
    			utilruntime.HandleError(fmt.Errorf("error splitting dswPodKey %q: %v", dswPodKey, err))
    			continue
    		}
    		informerPod, err := dswp.podLister.Pods(namespace).Get(name)
    		switch {
    		case errors.IsNotFound(err):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import.cc

        // Splits into lines.
        SmallVector<StringRef, 8> lines;
        file->getBuffer().split(lines, "\n", -1, false);
        // The resize method is used since split operator puts tail value in the end
        // without splitting the leftovers.
        if (op.getVocabSize() != -1) lines.resize(op.getVocabSize());
    
        // Map each line to line number, starting from zero.
        SmallVector<int64_t, 8> line_nums;
        line_nums.resize(lines.size());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vet/vetflag.go

    		} else if strings.HasPrefix(arg, "-vettool=") ||
    			strings.HasPrefix(arg, "--vettool=") {
    			vetTool = arg[strings.IndexByte(arg, '=')+1:]
    			return
    		}
    	}
    }
    
    // vetFlags processes the command line, splitting it at the first non-flag
    // into the list of flags and list of packages.
    func vetFlags(args []string) (passToVet, packageNames []string) {
    	parseVettoolFlag(args)
    
    	// Query the vet command for its flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

      exit(0)
    
    # For test cases, only show the ones that failed that have text (a log)
    seen = collections.Counter()
    runfiles_matcher = re.compile(r"(/.*\.runfiles/)")
    
    
    for f in files.strip().splitlines():
      # Just ignore any failures, they're probably not important
      try:
        r = JUnitXml.fromfile(f)
      except Exception as e:  # pylint: disable=broad-except
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                    // After splitting at the JAR separator, it is regarded as a root directory "/java.base".
                    // To work with LibraryPathFilter, a hacky workaround here is to remove "modules/" from actual file path.
                    // e.g. "/path/to/jdk/home!/java.base/java/lang/Object.class", which, from Path viewpoint, belongs to "/java.base",
                    // after splitting at the JAR separator, in a similar way.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

            ) {
              ranges.removeAt(j)
            } else {
              break@mergeAdjacent
            }
          }
        }
        i++
      }
      return ranges
    }
    
    /**
     * Returns a copy of [mappings], splitting to ensure that each mapping is entirely contained within
     * a single section.
     */
    internal fun withoutSectionSpans(mappings: List<Mapping>): List<Mapping> {
      val result = mutableListOf<Mapping>()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/emitter.go

    	ConsumeViewerFrame func(key string, f format.Frame)
    	Flush              func()
    }
    
    // ViewerDataTraceConsumer returns a TraceConsumer that writes to w. The
    // startIdx and endIdx are used for splitting large traces. They refer to
    // indexes in the traceEvents output array, not the events in the trace input.
    func ViewerDataTraceConsumer(w io.Writer, startIdx, endIdx int64) TraceConsumer {
    	allFrames := make(map[string]format.Frame)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils.go

    	if err != nil {
    		return false, "", errors.Wrapf(err, "failed to marshal Pod manifest for %q to YAML", path2)
    	}
    
    	diff := difflib.UnifiedDiff{
    		A: difflib.SplitLines(string(manifest1)),
    		B: difflib.SplitLines(string(manifest2)),
    	}
    
    	diffStr, err := difflib.GetUnifiedDiffString(diff)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top