Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3271 - 3280 of 3,972 for atrule (0.05 sec)

  1. internal/kms/stub.go

    	return req.Ciphertext, nil
    }
    
    // MAC is a non-functional stub.
    func (s StubKMS) MAC(_ context.Context, m *MACRequest) ([]byte, error) {
    	return m.Message, nil
    }
    
    // containsKeyName returns true if the given key name exists in the stub KMS.
    func (s *StubKMS) containsKeyName(keyName string) bool {
    	return slices.Contains(s.KeyNames, keyName)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Aug 18 06:43:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. internal/color/color.go

    	FgWhite = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgWhite).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	TurnOff = func() {
    		color.NoColor = true
    	}
    
    	TurnOn = func() {
    		color.NoColor = false
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. internal/s3select/sql/jsonpath.go

    			if flatten {
    				// Flatten if array.
    				if arr, ok := rval.([]interface{}); ok {
    					result = append(result, arr...)
    					continue
    				}
    			}
    			result = append(result, rval)
    		}
    		return result, true, nil
    	}
    	panic("cannot reach here")
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

                throws IOException, XmlPullParserException {
            ParamdocXpp3Reader paramdocReader = new ParamdocXpp3Reader();
    
            ExpressionDocumentation documentation = paramdocReader.read(docStream, true);
    
            List<Expression> expressions = documentation.getExpressions();
    
            Map<String, Expression> bySyntax = new HashMap<>();
    
            if (expressions != null && !expressions.isEmpty()) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SigningDigest.java

                        Hexdump.hexdump( log, data,
                            offset + ServerMessageBlock.SIGNATURE_OFFSET, 8 );
                    }
                    return response.verifyFailed = true;
                }
            }
    
            return response.verifyFailed = false;
        }
        public String toString() {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/message/MessageFormatter.java

            if (!initialized) {
                DisposableUtil.add(() -> {
                    ResourceBundle.clearCache();
                    initialized = false;
                });
                initialized = true;
            }
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. compat/maven-model/pom.xml

                <param>packageModelV3=org.apache.maven.model</param>
                <param>packageModelV4=org.apache.maven.api.model</param>
                <param>packageToolV4=org.apache.maven.model.v4</param>
                <param>isMavenModel=true</param>
                <param>minimalVersion=4.0.0</param>
              </params>
            </configuration>
            <executions>
              <execution>
                <id>modello-site-docs</id>
                <goals>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. docs/distributed/iam-import-with-missing-entities.sh

    make docker-images
    make docker-run
    cd -
    
    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:22000"
    export MC_HOST_myminio1="http://minioadmin:minioadmin@localhost:24000"
    
    # Start MinIO instance
    export CI=true
    (minio server --address :22000 --console-address :10000 http://localhost:22000/tmp/ldap{1...4} 2>&1 >/dev/null) &
    sleep 30
    ./mc ready myminio
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. internal/mountinfo/mountinfo_linux.go

    		return false
    	}
    
    	// If the directory has a different device as parent, then it is a mountpoint.
    	if s1.Sys().(*syscall.Stat_t).Dev != s2.Sys().(*syscall.Stat_t).Dev {
    		//  path/.. on a different device as path
    		return true
    	}
    
    	// path/.. is the same i-node as path - this check is for bind mounts.
    	return s1.Sys().(*syscall.Stat_t).Ino == s2.Sys().(*syscall.Stat_t).Ino
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/databaseInfoMap.dfprop

        #  The properties that depends on the database.
        #
        ; propertiesMap = map:{
            # If you use Oracle and its Synonym, specify this property.
            #; includeSynonyms=true
        }
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o variousMap: (NotRequired - Default map:{})
        #  The various settings about JDBC task mainly.
        #
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
Back to top