Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for Primer (4.88 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    :kotlin-tutorials: https://kotlinlang.org/tutorials/
    :gradle-issues: https://github.com/gradle/gradle/issues/
    :plugin-portal: https://plugins.gradle.org/
    
    [[kotlin_dsl]]
    = Gradle Kotlin DSL Primer
    
    Gradle's Kotlin DSL provides an alternative syntax to the traditional Groovy DSL with an enhanced editing experience in supported IDEs, with superior content assist, refactoring, documentation, and more.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

        *::-webkit-scrollbar-thumb {
          background-color: #686868;
          border-radius: 20px;
          border: 3px #686868;
        }
    }
    
    /* Custom Admonition Blocks - Icons from https://github.com/primer/octicons */
    .admonitionblock td div:last-of-type p {
    	margin-bottom: 0em !important;
    }
    
    .admonitionblock {
    	margin: 1.4rem 0 0
    }
    
    .admonitionblock i {
    	font-family: inherit;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    			cfgNames += ", "
    		}
    	}
    	fmt.Fprintf(writer, "   %s\n", cfgNames)
    }
    
    func printPeerAuthentication(writer io.Writer, pa authn.MergedPeerAuthentication) {
    	fmt.Fprintf(writer, "Effective PeerAuthentication:\n")
    	fmt.Fprintf(writer, "   Workload mTLS mode: %s\n", pa.Mode.String())
    	if len(pa.PerPort) != 0 {
    		fmt.Fprintf(writer, "   Port Level mTLS mode:\n")
    		for port, mode := range pa.PerPort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    		t.Logf("testing: %s", tc.name)
    		// Define the driver and set the FSGroupPolicy
    		driver := getTestCSIDriver(testDriver, nil, nil, nil)
    		if tc.defined {
    			driver.Spec.FSGroupPolicy = &tc.expectedFSGroupPolicy
    		} else {
    			driver.Spec.FSGroupPolicy = &defaultPolicy
    		}
    
    		// Create the client and register the resources
    		fakeClient := fakeclient.NewSimpleClientset(driver)
    		plug, tmpDir := newTestPlugin(t, fakeClient)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    func TestCSINodeValidation(t *testing.T) {
    	driverName := "driver-name"
    	driverName2 := "1io.kubernetes-storage-2-csi-driver3"
    	longName := "my-a-b-c-d-c-f-g-h-i-j-k-l-m-n-o-p-q-r-s-t-u-v-w-x-y-z-ABCDEFGHIJKLMNOPQRSTUVWXYZ-driver" // 88 chars
    	nodeID := "nodeA"
    	longID := longName + longName + "abcdefghijklmnopqrstuvwxyz" // 202 chars
    	successCases := []storage.CSINode{{
    		// driver name: dot only
    		ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_FLAGSEX_INSTALLEDDRIVER          DI_FLAGSEX = 0x04000000 // only add the installed driver to the class or compat driver list.  Used in calls to SetupDiBuildDriverInfoList
    	DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE  DI_FLAGSEX = 0x08000000 // Don't remove identical driver nodes from the class list
    	DI_FLAGSEX_ALTPLATFORM_DRVSEARCH    DI_FLAGSEX = 0x10000000 // Build driver list based on alternate platform information specified in associated file queue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/CopyUtil.java

         *
         * @param writer
         *            ライター
         * @return ラップされたライター
         */
        protected static Writer wrap(final Writer writer) {
            if (writer instanceof BufferedWriter) {
                return writer;
            }
            if (writer instanceof StringWriter) {
                return writer;
            }
            return new BufferedWriter(writer, DEFAULT_BUF_SIZE);
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Flushes and closes the summary writer.";
    
      let description = [{
    Also removes it from the resource manager. To reopen, use another
    CreateSummaryFileWriter op.
    
    writer: A handle to the summary writer resource.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryFree]>:$writer
      );
    
      let results = (outs);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    	tests := []struct {
    		name                   string
    		driver                 string
    		expectVolumeAttachment bool
    		watchTimeout           time.Duration
    	}{
    		{
    			name:                   "CSIDriver not attachable",
    			driver:                 "not-attachable",
    			expectVolumeAttachment: false,
    		},
    		{
    			name:                   "CSIDriver is attachable",
    			driver:                 "attachable",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	resourceClass = &resourcev1alpha2.ResourceClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: className,
    		},
    		DriverName: "some-driver",
    	}
    	structuredResourceClass = &resourcev1alpha2.ResourceClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: className,
    		},
    		DriverName:           "some-driver",
    		StructuredParameters: ptr.To(true),
    	}
    	structuredResourceClassWithParams = &resourcev1alpha2.ResourceClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top