Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 947 for ONCE (0.04 sec)

  1. src/runtime/trace.go

    	}
    	unlock(&s.lock)
    }
    
    // close wakes any goroutine sleeping on the timer and prevents
    // further sleeping on it.
    //
    // Once close is called, the wakeableSleep must no longer be used.
    //
    // It must only be called once no goroutine is sleeping on the
    // timer *and* nothing else will call wake concurrently.
    func (s *wakeableSleep) close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/goboringcrypto.h

    // but cmd/link's internal linking mode doesn't handle constructors.
    // Until it does, we've exported the symbol and can call it explicitly.
    // (If using external linking mode, it will therefore be called twice,
    // once explicitly and once as a constructor, but that's OK.)
    /*unchecked*/ void _goboringcrypto_BORINGSSL_bcm_power_on_self_test(void);
    
    // #include <openssl/crypto.h>
    int _goboringcrypto_FIPS_mode(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            htmlReport.testClass("org.gradle.testing.SubTest").assertTestCount(4, 1, 0).assertTestPassed("passing") // onlySub is passing once and failing once
                .assertStdout(allOf(containsString('org.gradle.testing.SubTest#passing sub\n'),
                    containsString('org.gradle.testing.SubTest#passing super\n'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         * Does not fail the test if the warning does not appear in the output.
         *
         * WARNING: Only use for warnings that occurs intermittently. For example a deprecation warning for a function
         * that is only called once per Gradle daemon from a third party plugin.
         *
         * @param warning the text of the warning to match.
         */
        SmokeTestGradleRunner maybeExpectLegacyDeprecationWarning(String warning) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache_test.go

    	_, err = sc.GenerateSecret(security.WorkloadKeyCertResourceName)
    	if err != nil {
    		t.Errorf("failed to generate certificate for trustAnchor test case")
    	}
    	// Ensure Root cert call back gets invoked once, then workload cert once it expires in 200ms
    	u.Expect(map[string]int{security.RootCertReqResourceName: 1, security.WorkloadKeyCertResourceName: 1})
    	u.Reset()
    
    	rootCert, err := os.ReadFile(filepath.Join("./testdata", "root-cert.pem"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	// HasAddedPods returns whether the populator has looped through the list
    	// of active pods and added them to the desired state of the world cache,
    	// at a time after sources are all ready, at least once. It does not
    	// return true before sources are all ready because before then, there is
    	// a chance many or all pods are missing from the list of active pods and
    	// so few to none will have been added.
    	HasAddedPods() bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    .Sources and Swift compilation
    image::swift-sourcesets-compilation.png[]
    
    // TODO once we have the testing chapter
    //Test sources are configured on each test suite script block. See <<swift_testing.adoc#swift_testing,Testing Swift projects>> chapter.
    
    [[sec:swift_dependency_management_overview]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/conversion.go

    	if err := autoConvert_core_PodTemplateSpec_To_v1_PodTemplateSpec(in, out, s); err != nil {
    		return err
    	}
    
    	// drop init container annotations so they don't take effect on legacy kubelets.
    	// remove this once the oldest supported kubelet no longer honors the annotations over the field.
    	out.Annotations = dropInitContainerAnnotations(out.Annotations)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. misc/go_android_exec/main.go

    	// wait for sys.boot_completed.
    	if err := adb("wait-for-device", "exec-out", "while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done;"); err != nil {
    		return 0, err
    	}
    
    	// Done once per make.bash.
    	if err := adbCopyGoroot(); err != nil {
    		return 0, err
    	}
    
    	// Prepare a temporary directory that will be cleaned up at the end.
    	// Binary names can conflict.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

                val propertyName: String
            ) : MergeKey
    
            /**
             * The key for element blocks that configure the same nested objects (like configuring functions do).
             *
             * TODO: once we have identity-aware configuring functions, include the arguments in this key.
             */
            data class CanMergeBlock(
                val functionName: String,
                val configuredTypeName: FqName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top