Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 151 for splitLine (0.22 sec)

  1. api/openapi-spec/v3/apis__rbac.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. src/os/user/listgroups_unix.go

    			continue
    		}
    		if bytes.Count(line[:listIdx], colon) != 2 {
    			// Incorrect number of colons.
    			continue
    		}
    		list := line[listIdx+1:]
    		// Check the list for user without splitting or copying.
    		if !(bytes.Equal(list, userOnly) || bytes.HasPrefix(list, userFirst) || bytes.HasSuffix(list, userLast) || bytes.Contains(list, userCommas)) {
    			continue
    		}
    
    		// groupname:password:GID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. pkg/test/util/yml/parts.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    )
    
    const (
    	joinSeparator = "\n---\n"
    )
    
    // Split where the '---' appears at the very beginning of a line. This will avoid
    // accidentally splitting in cases where yaml resources contain nested yaml (which
    // is indented).
    var splitRegex = regexp.MustCompile(`(^|\n)---`)
    
    // SplitYamlByKind splits the given YAML into parts indexed by kind.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. pilot/pkg/features/security.go

    			" This can only be used when the network where Istiod and the authenticating gateways are running in a trusted/secure network",
    	)
    
    	TrustedGatewayCIDR = func() []string {
    		cidr := trustedGatewayCIDR.Get()
    
    		// splitting the empty string will result [""]
    		if cidr == "" {
    			return []string{}
    		}
    
    		return strings.Split(cidr, ",")
    	}()
    
    	CATrustedNodeAccounts = func() sets.Set[types.NamespacedName] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/post_quantize.cc

      }
    };
    
    void PostQuantizePass::runOnOperation() {
      RewritePatternSet patterns(&getContext());
      func::FuncOp func = getOperation();
      MLIRContext* ctx = func.getContext();
      // TODO: b/307463853 - Consider splitting passes for each pattern set.
      patterns.add<FoldTrivalRequantizeOp<quantfork::QuantizeCastOp>,
                   RemoveVolatileQdqPattern>(ctx);
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Splitter.java

     *
     * <p>Splitter instances are thread-safe immutable, and are therefore safe to store as {@code static
     * final} constants.
     *
     * <p>The {@link Joiner} class provides the inverse operation to splitting, but note that a
     * round-trip between the two should be assumed to be lossy.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#splitter">{@code Splitter}</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  7. ci/official/wheel_test/test_import_api_packages.py

              "tensorflow", "_api/v2/api_packages.txt"
          )
    
          logging.info("Load api packages file: %s", api_packages_path)
          with open(api_packages_path) as file:
            return set(file.read().splitlines())
    
        super().setUp()
        self.api_packages_v2 = _get_api_packages_v2()
        # Some paths in the api_packages_path file cannot be directly imported.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. cmd/signature-v2.go

    	}
    
    	// below is V2 Signed Auth header format, splitting on `space` (after the `AWS` string).
    	// Authorization = "AWS" + " " + AWSAccessKeyId + ":" + Signature
    	authFields := strings.Split(r.Header.Get(xhttp.Authorization), " ")
    	if len(authFields) != 2 {
    		return auth.Credentials{}, false, ErrMissingFields
    	}
    
    	// Then will be splitting on ":", this will separate `AWSAccessKeyId` and `Signature` string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    tasks.validatePlugins {
        enableStricterValidation = true
    }
    
    // Remove gradleApi() and gradleTestKit() as we want to compile/run against Gradle modules
    // TODO consider splitting `java-gradle-plugin` to provide only what's necessary here
    configurations.all {
        withDependencies {
            remove(project.dependencies.gradleApi())
            remove(project.dependencies.gradleTestKit())
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__admissionregistration.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)
Back to top