Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for accidentally (0.19 sec)

  1. cluster/addons/calico-policy-controller/felixconfigurations-crd.yaml

                      UDP/TCP ports that Felix will allow incoming traffic to host endpoints
                      on irrespective of the security policy. This is useful to avoid
                      accidentally cutting off a host with incorrect configuration. Each
                      port should be specified as tcp:<port-number> or udp:<port-number>.
                      For back-compatibility, if the protocol is not specified, it defaults
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 29.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/ErrorParsingTest.kt

                    name = c
                    rhs = IntLiteral [indexes: 29..30, line/column: 3/9..3/10, file: test] (9)
                )""".trimIndent()
            parse(code).assert(expected)
        }
    
        @Test
        fun `accidentally concatenated lines in a series of assignments`() {
            val code = """
                val a = 1
                val b = 2 val c = 3
                val d = 4
            """.trimIndent()
    
            val expected = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 09:41:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. 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)
  9. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_EQ(add_const.result0(), 579);
      EXPECT_EQ(add_const.result0_data()[0], 579);
      EXPECT_EQ(add_const.result0_data(), add_const.results()[0]);
    }
    
    // Run tests that use set_argN_data separately, to avoid accidentally re-using
    // non-existent buffers.
    TEST(TFCompileTest, Add_SetArg) {
      AddComp add(
          XlaCompiledCpuFunction::AllocMode::RESULTS_PROFILES_AND_TEMPS_ONLY);
    
      int32 arg_x = 10;
      int32 arg_y = 32;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top