Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 198 for accidentally (0.37 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

        classLoader: ClassLoader = MockProject::class.java.classLoader
    ) {
        init {
            // We depend on swing (indirectly through PSI or something), so we want to declare headless mode,
            // to avoid accidentally starting the UI thread. But, don't set it if it was set externally.
            if (System.getProperty("java.awt.headless") == null) {
                System.setProperty("java.awt.headless", "true")
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            when:
            def jarLibEntries = libZipEntries.findAll { it.name.endsWith(".jar") }
    
            then:
            //ME: This is not a foolproof way of checking that additional jars have not been accidentally added to the distribution
            //but should be good enough. If this test fails for you and you did not intend to add new jars to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

        assertThat(request.tag(String::class)).isSameAs(stringTag)
    
        // TODO check for Jvm or handle Long/long correctly
    //    assertThat(request.tag(Long::class)).isSameAs(longTag)
      }
    
      /** Confirm that we don't accidentally share the backing map between objects. */
      @Test
      fun tagsAreImmutable() {
        val builder =
          Request.Builder()
            .url("https://square.com")
        val requestA = builder.tag(String::class, "a").build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cluster/images/etcd/migrate/options.go

    	flags.Uint64Var(&opts.port, "port", 0,
    		"etcd client port to use during migration operations. "+
    			"This should be a different port than typically used by etcd to avoid clients accidentally connecting during upgrade/downgrade operations. "+
    			"If unset default to 18629 or 18631 depending on <data-dir>.")
    	flags.Uint64Var(&opts.peerPort, "peer-port", 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //     ^     matches the beginning of a string (not that of each line)
    //     $     matches the end of a string (not that of each line)
    //     xy    matches x followed by y
    //
    //   If you accidentally use PCRE or POSIX extended regex features
    //   not implemented by us, you will get a run-time failure.  In that
    //   case, please try to rewrite your regular expression within the
    //   above syntax.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/strconv/quote_test.go

    	}
    
    	// Test QuotedPrefix.
    	// Adding an arbitrary suffix should not change the result of QuotedPrefix
    	// assume that the suffix doesn't accidentally terminate a truncated input.
    	if gotErr == nil {
    		want = in
    	}
    	suffix := "\n\r\\\"`'" // special characters for quoted strings
    	if len(in) > 0 {
    		suffix = strings.ReplaceAll(suffix, in[:1], "")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/ephemeral/controller.go

    	}
    }
    
    func (ec *ephemeralController) onPVCDelete(obj interface{}) {
    	pvc, ok := obj.(*v1.PersistentVolumeClaim)
    	if !ok {
    		return
    	}
    
    	// Someone deleted a PVC, either intentionally or
    	// accidentally. If there is a pod referencing it because of
    	// an ephemeral volume, then we should re-create the PVC.
    	// The common indexer does some prefiltering for us by
    	// limiting the list to those pods which reference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/common/extensions.kt

     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
     * This is an undocumented location that forbids anonymous access.
     * We put artifacts here to avoid accidentally exposing sensitive information publicly.
     */
    const val hiddenArtifactDestination = ".teamcity/gradle-logs"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  9. src/syscall/exec_windows.go

    	j := 0
    	for i := range fd {
    		if fd[i] != 0 {
    			fd[j] = fd[i]
    			j++
    		}
    	}
    	fd = fd[:j]
    
    	willInheritHandles := len(fd) > 0 && !sys.NoInheritHandles
    
    	// Do not accidentally inherit more than these handles.
    	if willInheritHandles {
    		err = updateProcThreadAttribute(si.ProcThreadAttributeList, 0, _PROC_THREAD_ATTRIBUTE_HANDLE_LIST, unsafe.Pointer(&fd[0]), uintptr(len(fd))*unsafe.Sizeof(fd[0]), nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 18:29:48 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.9
    // +k8s:prerelease-lifecycle-gen:deprecated=1.19
    // This API is never server served.  It is used for outbound requests from apiservers.  This will ensure it never gets served accidentally
    // and having the generator against this group will protect future APIs which may be served.
    // +k8s:prerelease-lifecycle-gen:replacement=admission.k8s.io,v1,AdmissionReview
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 9.6K bytes
    - Viewed (0)
Back to top