Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for synthesized (0.19 sec)

  1. pkg/kubelet/kuberuntime/security_context.go

    	if err != nil {
    		return nil, err
    	}
    
    	// set ApparmorProfile.
    	synthesized.Apparmor, synthesized.ApparmorProfile, err = getAppArmorProfile(pod, container)
    	if err != nil {
    		return nil, err
    	}
    
    	// set RunAsUser.
    	if synthesized.RunAsUser == nil {
    		if uid != nil {
    			synthesized.RunAsUser = &runtimeapi.Int64Value{Value: *uid}
    		}
    		synthesized.RunAsUsername = username
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/securitycontext/util.go

    		synthesized.RunAsUser = new(int64)
    		*synthesized.RunAsUser = *pod.Spec.SecurityContext.RunAsUser
    	}
    
    	if pod.Spec.SecurityContext.RunAsGroup != nil {
    		synthesized.RunAsGroup = new(int64)
    		*synthesized.RunAsGroup = *pod.Spec.SecurityContext.RunAsGroup
    	}
    
    	if pod.Spec.SecurityContext.RunAsNonRoot != nil {
    		synthesized.RunAsNonRoot = new(bool)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/runtime/profbuf_test.go

    	})
    
    	t.Run("ReadAfterOverflow1", func(t *testing.T) {
    		// overflow record synthesized by write
    		b := NewProfBuf(2, 16, 5)
    		write(t, b, unsafe.Pointer(&myTags[0]), 1, []uint64{2, 3}, []uintptr{4, 5, 6, 7, 8, 9})           // uses 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 20:04:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    For the default test suite named 'test', no additional configuration is necessary.  The aggregated reports and their backing tasks of type `TestReport` are synthesized based on the test suites existing in the `application` project.  Test suites having identical `testType` properties will be aggregated.
    
    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/list_cgo_compiled_importmap.txt

    # Regression test for https://golang.org/issue/46462.
    #
    # The "runtime/cgo" import found in synthesized .go files (reported in
    # the CompiledGoFiles field) should have a corresponding entry in the
    # ImportMap field when a runtime/cgo variant (such as a test variant)
    # will be used.
    
    [short] skip  # -compiled can be slow (because it compiles things)
    [!cgo] skip
    [GOOS:darwin] skip # net package does not import "C" on Darwin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 22:26:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/testing/fstest/mapfs.go

    // represented as a map from path names (arguments to Open)
    // to information about the files or directories they represent.
    //
    // The map need not include parent directories for files contained
    // in the map; those will be synthesized if needed.
    // But a directory can still be included by setting the [MapFile.Mode]'s [fs.ModeDir] bit;
    // this may be necessary for detailed control over the directory's [fs.FileInfo]
    // or to create an empty directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    For the default test suite named 'test', no additional configuration is necessary.  The aggregated reports and their backing tasks of type `JacocoReport` are synthesized based on the test suites existing in the `application` project.  Test suites having identical `testType` properties will be aggregated.
    
    Running the tests and generate the report:
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    The user must also declare one or more reports of type `JacocoCoverageReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the coverage data.  A `JacocoReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the `jacocoAggregation` configuration.
    
    Running the tests and generate the report:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    The user must also declare one or more reports of type `AggregateTestReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the test data.  A `TestReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the `testReportAggregation` configuration.
    
    Run the tests and generate the report:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGClassIntegrationTest.groovy

            containsEvent(FINISHED, DefaultTestClassDescriptor, 'TestSuite > FullTest > org.company.SystemOutTest')
            containsEvent(FINISHED, DefaultTestSuiteDescriptor, 'TestSuite > FullTest')
        }
    
        def "synthesized events for broken configuration methods reference test class descriptors"() {
            given:
            file("src/test/java/org/company/TestWithBrokenSetupMethod.java") << """
                package org.company;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top