Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 335 for bland (0.17 sec)

  1. src/cmd/go/internal/modindex/build.go

    			// When we find the first non-blank, non-// line,
    			// this "end" position marks the latest file position
    			// where a // +build line can appear.
    			// (It must appear _before_ a blank line before the non-blank, non-// line.
    			// Yes, that's confusing, which is part of why we moved to //go:build lines.)
    			// Note that ended==false here means that inSlashStar==false,
    			// since seeing a /* would have set ended==true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_stack_test.go

    	logger := klog.Background()
    	logger = klog.LoggerWithValues(logger, "request", 42)
    	ctx := klog.NewContext(context.Background(), logger)
    
    	// The line number of the next call must be at line 60. Here are some
    	// blank lines that can be removed to keep the line unchanged.
    	//
    	//
    	//
    	//
    	//
    	//
    	HandleErrorWithContext(ctx, errors.New("fake error"), "test")
    
    	klog.Flush()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <description>The base version (i.e. ending in {@code -SNAPSHOT}) when this directory represents a "groupId/artifactId/version" for a SNAPSHOT.</description>
            </field>
            <field xdoc.separator="blank">
              <name>plugins</name>
              <version>1.0.0+</version>
              <description>The set of plugins when this directory represents a "groupId".</description>
              <association>
                <type>Plugin</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field xdoc.separator="blank">
              <name>mojos</name>
              <version>1.0.0+</version>
              <association>
                <type>MojoDescriptor</type>
                <multiplicity>*</multiplicity>
              </association>
              <description>Description of each Mojo provided by the plugin.</description>
            </field>
            <field xdoc.separator="blank">
              <name>dependencies</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/net/iprawsock.go

    	}
    	return n, err
    }
    
    // WriteMsgIP writes a message to addr via c, copying the payload from
    // b and the associated out-of-band data from oob. It returns the
    // number of payload and out-of-band bytes written.
    //
    // The packages golang.org/x/net/ipv4 and golang.org/x/net/ipv6 can be
    // used to manipulate IP-level socket options in oob.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java

            return false;
        }
    
        public ArtifactRepository getRepository() {
            return null;
        }
    
        public void setRepository(ArtifactRepository remoteRepository) {
            // intentionally blank
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/concurrent/JavaSystemPropertiesAsyncIOScopeSettingsTest.kt

            val settings = JavaSystemPropertiesAsyncIOScopeSettings()
            assertEquals(DEFAULT_IO_ACTION_TIMEOUT, settings.ioActionTimeoutMs)
        }
    
        @Test
        fun `use default timeout when property is a blank string`() {
            System.setProperty(IO_ACTION_TIMEOUT_SYSTEM_PROPERTY, " ")
            val settings = JavaSystemPropertiesAsyncIOScopeSettings()
            assertEquals(DEFAULT_IO_ACTION_TIMEOUT, settings.ioActionTimeoutMs)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/go/types/struct.go

    	}
    	if len(tags) > len(fields) {
    		panic("more tags than fields")
    	}
    	s := &Struct{fields: fields, tags: tags}
    	s.markComplete()
    	return s
    }
    
    // NumFields returns the number of fields in the struct (including blank and embedded fields).
    func (s *Struct) NumFields() int { return len(s.fields) }
    
    // Field returns the i'th field for 0 <= i < NumFields().
    func (s *Struct) Field(i int) *Var { return s.fields[i] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/regexp/syntax/make_perl_groups.pl

    # Perl about each letter from 0-128 and write down
    # its answer.
    
    use strict;
    use warnings;
    
    my @posixclasses = (
    	"[:alnum:]",
    	"[:alpha:]",
    	"[:ascii:]",
    	"[:blank:]",
    	"[:cntrl:]",
    	"[:digit:]",
    	"[:graph:]",
    	"[:lower:]",
    	"[:print:]",
    	"[:punct:]",
    	"[:space:]",
    	"[:upper:]",
    	"[:word:]",
    	"[:xdigit:]",
    );
    
    my @perlclasses = (
    	"\\d",
    	"\\s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/go/doc/synopsis.go

    	pr.TextWidth = -1
    	d := p.Parser().Parse(text)
    	if len(d.Content) == 0 {
    		return ""
    	}
    	if _, ok := d.Content[0].(*comment.Paragraph); !ok {
    		return ""
    	}
    	d.Content = d.Content[:1] // might be blank lines, code blocks, etc in “first sentence”
    	return strings.TrimSpace(string(pr.Text(d)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top