Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for Primer (0.1 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/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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/xl-storage-format-v2_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = ChecksumAlgo(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z ChecksumAlgo) EncodeMsg(en *msgp.Writer) (err error) {
    	err = en.WriteUint8(uint8(z))
    	if err != nil {
    		err = msgp.WrapError(err)
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top