Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1561 - 1570 of 5,847 for stringy (0.05 sec)

  1. internal/s3select/simdj/reader_amd64_test.go

    						if typ == simdjson.TypeNone {
    							close(dst)
    							break parser
    						}
    						t.Fatal("Unexpected type:", typ.String())
    					}
    
    					o, err := obj.Object(nil)
    					if err != nil {
    						t.Fatal(err)
    					}
    					dst <- *o
    				default:
    					t.Fatal("unexpected type:", typ.String())
    				}
    			}
    			refDec := json.NewReader(io.NopCloser(bytes.NewBuffer(ref)), &json.ReaderArgs{ContentType: "json"})
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/building/SimpleProblemCollector.java

     *
     */
    public class SimpleProblemCollector implements ModelProblemCollector {
        private Model model;
    
        private List<String> warnings = new ArrayList<>();
    
        private List<String> errors = new ArrayList<>();
    
        private List<String> fatals = new ArrayList<>();
    
        public SimpleProblemCollector() {}
    
        public SimpleProblemCollector(Model model) {
            this.model = model;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

        /**
         * Field goals.
         */
        private java.util.List<String> goals;
    
        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method addGoal.
         *
         * @param string a string object.
         */
        public void addGoal(String string) {
            getGoals().add(string);
        } // -- void addGoal( String )
    
        /**
         * Get configuration to pass to the goals.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. okhttp-android/api/okhttp-android.api

    	public static final fun androidLogging (Lokhttp3/logging/LoggingEventListener$Companion;ILjava/lang/String;)Lokhttp3/logging/LoggingEventListener$Factory;
    	public static synthetic fun androidLogging$default (Lokhttp3/logging/HttpLoggingInterceptor$Companion;ILjava/lang/String;ILjava/lang/Object;)Lokhttp3/logging/HttpLoggingInterceptor;
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java

        @Override
        public String asTableDbName() {
            return asEsIndexType();
        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.data_config";
        }
    
        @Override
        public String asEsIndexType() {
            return "data_config";
        }
    
        @Override
        public String asEsSearchType() {
            return "data_config";
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java

        @Override
        public String asTableDbName() {
            return asEsIndexType();
        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.label_type";
        }
    
        @Override
        public String asEsIndexType() {
            return "label_type";
        }
    
        @Override
        public String asEsSearchType() {
            return "label_type";
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. cmd/batch-replicate_gen.go

    	// map header, size 6
    	// string "Type"
    	o = append(o, 0x86, 0xa4, 0x54, 0x79, 0x70, 0x65)
    	o = msgp.AppendString(o, string(z.Type))
    	// string "Bucket"
    	o = append(o, 0xa6, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74)
    	o = msgp.AppendString(o, z.Bucket)
    	// string "Prefix"
    	o = append(o, 0xa6, 0x50, 0x72, 0x65, 0x66, 0x69, 0x78)
    	o = msgp.AppendString(o, z.Prefix)
    	// string "Endpoint"
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidLog.kt

      // Keep references to loggers to prevent their configuration from being GC'd.
      private val configuredLoggers = CopyOnWriteArraySet<Logger>()
    
      private val knownLoggers =
        LinkedHashMap<String, String>().apply {
          val packageName = OkHttpClient::class.java.`package`?.name
    
          if (packageName != null) {
            this[packageName] = "OkHttp"
          }
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocExtensionsBuilder.java

        /**
         * Builds the extension meta-data for the given class.
         */
        public void build(ClassDoc classDoc) {
            Map<String, ClassExtensionDoc> plugins = new HashMap<String, ClassExtensionDoc>();
            for (MixinMetaData mixin : classDoc.getExtensionMetaData().getMixinClasses()) {
                String pluginId = mixin.getPluginId();
                ClassExtensionDoc classExtensionDoc = plugins.get(pluginId);
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        public void setFullUNCPath ( String domain, String server, String fullName ) {
            this.domain = domain;
            this.server = server;
            this.fullName = fullName;
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * Strips a leading \
         *
         * @see jcifs.internal.RequestWithPath#setPath(java.lang.String)
         */
        @Override
        public void setPath ( String path ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
Back to top