Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 1,827 for segfault (0.2 sec)

  1. helm/minio/templates/_helpers.tpl

    {{/* vim: set filetype=mustache: */}}
    {{/*
    Expand the name of the chart.
    */}}
    {{- define "minio.name" -}}
      {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
    {{- end -}}
    
    {{/*
    Create a default fully qualified app name.
    We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
    If release name contains chart name it will be used as a full name.
    */}}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

              return ImmutableSet.of(IMPLIES_FOO, IMPLIES_BAR);
            default:
              return ImmutableSet.of();
          }
        }
    
        @Retention(RUNTIME)
        @Inherited
        @TesterAnnotation
        @interface Require {
          ExampleFeature[] value() default {};
    
          ExampleFeature[] absent() default {};
        }
    
        @Retention(RUNTIME)
        @Inherited
        @interface NotTesterAnnotation {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_remote_test.cc

                      server_def, tensorflow::Env::Default(), &worker_server1)
                      .ok());
      ASSERT_TRUE(worker_server1->Start().ok());
    
      server_def.set_task_index(2);
      std::unique_ptr<tensorflow::GrpcServer> worker_server2;
      ASSERT_TRUE(tensorflow::GrpcServer::Create(
                      server_def, tensorflow::Env::Default(), &worker_server2)
                      .ok());
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jul 10 07:18:05 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/maven/bin/m2.conf

    # specific language governing permissions and limitations
    # under the License.
    
    main is ${maven.mainClass} from plexus.core
    
    set maven.conf default ${maven.home}/conf
    set maven.installation.conf default ${maven.conf}
    
    [plexus.core]
    load       ${maven.conf}/logging
    optionally ${maven.home}/lib/ext/redisson/*.jar
    optionally ${maven.home}/lib/ext/hazelcast/*.jar
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 03 16:03:55 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. buildscripts/upgrade-tests/compose.yml

        volumes:
          - ./nginx.conf:/etc/nginx/nginx.conf:ro
        ports:
        - "9000:9000"
        - "9001:9001"
        depends_on:
          - minio1
          - minio2
          - minio3
          - minio4
    
    ## By default this config uses default local driver,
    ## For custom volumes replace with volume driver configuration.
    volumes:
      data1-1:
      data1-2:
      data1-3:
      data2-1:
      data2-2:
      data2-3:
      data3-1:
      data3-2:
      data3-3:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

         * list, the default property list, and its defaults, recursively, are then checked. The method returns the default
         * value argument if the property is not found.
         *
         * @param key the property key.
         * @param defaultValue a default value.
         * @return The property value of the default value
         */
        public String getProperty(String key, String defaultValue) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. cmd/erasure-server-pool-decom_gen.go

    				err = msgp.WrapError(err, "BytesDone")
    				return
    			}
    		case "bf":
    			z.BytesFailed, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "BytesFailed")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 04 21:02:54 UTC 2022
    - 26.7K bytes
    - Viewed (0)
  8. internal/s3select/sql/funceval.go

    	case time.Time:
    		return x, nil
    	default:
    		return t, errCastFailure(fmt.Sprintf("cannot cast %v to Timestamp type", v.GetTypeString()))
    	}
    }
    
    func boolCast(v *Value) (b bool, _ error) {
    	sToB := func(s string) (bool, error) {
    		switch s {
    		case "true":
    			return true, nil
    		case "false":
    			return false, nil
    		default:
    			return false, errCastFailure("cannot cast to Bool")
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K bytes
    - Viewed (0)
  9. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java

         * be created automatically.
         *
         * @param output The file to serialize the settings to, must not be {@code null}.
         * @param options The options to use for serialization, may be {@code null} to use the default values.
         * @param settings The settings to serialize, must not be {@code null}.
         * @throws IOException If the settings could not be serialized.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. .github/workflows/scorecards-analysis.yml

    # limitations under the License.
    # ============================================================================
    
    name: Scorecards supply-chain security
    on:
      # For Branch-Protection check. Only the default branch is supported. See
      # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection
      branch_protection_rule:
      # To guarantee Maintained check is occasionally updated. See
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top