Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 158 for Strip (0.08 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    var buildDefinitions sync.Once
    var namer *openapi.DefinitionNamer
    
    // Options contains builder options.
    type Options struct {
    	// Convert to OpenAPI v2.
    	V2 bool
    
    	// Strip value validation.
    	StripValueValidation bool
    
    	// Strip nullable.
    	StripNullable bool
    
    	// AllowNonStructural indicates swagger should be built for a schema that fits into the structural type but does not meet all structural invariants
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt

      @Test
      fun hostContainsOnlyStrippedCharacters() {
        val url = "http://>/".toHttpUrl()
        assertThat(url.host).isEqualTo(">")
        assertThat(url.toUri().host).isNull()
      }
    
      /**
       * Strip unexpected characters when converting to URI (which is more strict).
       * https://github.com/square/okhttp/issues/5667
       */
      @Test
      fun hostToUriStripsCharacters() {
        val httpUrl = "http://example\".com/".toHttpUrl()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/runtime/os_darwin.go

    	// skip over argv, envv and the first string will be the path
    	n := argc + 1
    	for argv_index(argv, n) != nil {
    		n++
    	}
    	executablePath = gostringnocopy(argv_index(argv, n+1))
    
    	// strip "executable_path=" prefix if available, it's added after OS X 10.11.
    	const prefix = "executable_path="
    	if len(executablePath) > len(prefix) && executablePath[:len(prefix)] == prefix {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/link.go

    		// [[[[[[[[[[a]]]]]]]]]] which would otherwise generate quadratic
    		// amounts of garbage.
    		return ""
    	}
    
    	// “To normalize a label, strip off the opening and closing brackets,
    	// perform the Unicode case fold, strip leading and trailing spaces, tabs, and line endings,
    	// and collapse consecutive internal spaces, tabs, and line endings to a single space.”
    	s = trimSpaceTabNewline(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

            toolChain.add(instantiator.newInstance(DefaultGccCommandLineToolConfiguration.class, ToolType.STRIPPER, "strip"));
        }
    
        protected void configureDefaultTools(DefaultGccPlatformToolChain toolChain) {
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    		etcd_release_tmp_dir=$(shell mktemp -d); \
    		curl -sSL --retry 5 https://github.com/etcd-io/etcd/releases/download/v$$version/etcd-v$$version-linux-amd64.tar.gz | tar -xz -C $$etcd_release_tmp_dir --strip-components=1; \
    		$(BIN_INSTALL) $$etcd_release_tmp_dir/etcd $$etcd_release_tmp_dir/etcdctl $(TEMP_DIR)/; \
    		$(BIN_INSTALL) $(TEMP_DIR)/etcd $(TEMP_DIR)/etcd-$$version; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    	var constraints []topologySpreadConstraint
    	var err error
    	if len(pod.Spec.TopologySpreadConstraints) > 0 {
    		// We have feature gating in APIServer to strip the spec
    		// so don't need to re-check feature gate, just check length of Constraints.
    		constraints, err = pl.filterTopologySpreadConstraints(
    			pod.Spec.TopologySpreadConstraints,
    			pod.Labels,
    			v1.DoNotSchedule,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/syscall/mkerrors.sh

    		$2 !~ /^EPROC_/ &&
    		$2 !~ /^EQUIV_/ &&
    		$2 !~ /^EXPR_/ &&
    		$2 ~ /^E[A-Z0-9_]+$/ ||
    		$2 ~ /^B[0-9_]+$/ ||
    		$2 ~ /^V[A-Z0-9]+$/ ||
    		$2 ~ /^CS[A-Z0-9]/ ||
    		$2 ~ /^I(SIG|CANON|CRNL|EXTEN|MAXBEL|STRIP|UTF8)$/ ||
    		$2 ~ /^IGN/ ||
    		$2 ~ /^IX(ON|ANY|OFF)$/ ||
    		$2 ~ /^IN(LCR|PCK)$/ ||
    		$2 ~ /(^FLU?SH)|(FLU?SH$)/ ||
    		$2 ~ /^C(LOCAL|READ)$/ ||
    		$2 == "BRKINT" ||
    		$2 == "HUPCL" ||
    		$2 == "PENDIN" ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

            when:
            run('publish')
    
            then:
            result.assertTasksExecuted(
                tasks.debug.allToLink,
                tasks.release.allToLink,
                tasks.release.strip,
                ":generatePomFileForMainDebugPublication",
                ":generateMetadataFileForMainDebugPublication",
                ":publishMainDebugPublicationToMavenRepository",
                ":generatePomFileForMainPublication",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. src/cmd/internal/archive/archive.go

    	if err != nil {
    		return err
    	}
    	if !bytes.Equal(p, []byte(goobj.Magic)) {
    		if bytes.HasPrefix(p, []byte("\x00go1")) && bytes.HasSuffix(p, []byte("ld")) {
    			return r.error(ErrGoObjOtherVersion{p[1:]}) // strip the \x00 byte
    		}
    		return r.error(errCorruptObject)
    	}
    	r.skip(o.Size)
    	return nil
    }
    
    // AddEntry adds an entry to the end of a, with the content from r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top