Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mutable_s (0.34 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Sterling Greene <******@****.***> 1717795469 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			opts := buildClusterOpts{
    				mesh:    cb.req.Push.Mesh,
    				mutable: mc,
    			}
    			cb.applyConnectionPool(opts.mesh, opts.mutable, tt.connectionPool)
    			// assert httpProtocolOptions
    			assert.Equal(t, opts.mutable.httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout,
    				tt.expectedHTTPPOpt.CommonHttpProtocolOptions.IdleTimeout)
    			assert.Equal(t, opts.mutable.httpProtocolOptions.CommonHttpProtocolOptions.MaxRequestsPerConnection,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    			opt := buildClusterOpts{
    				mutable: newClusterWrapper(tt.cluster),
    				port:    &model.Port{Port: 80},
    			}
    			addTelemetryMetadata(tt.cluster, opt.port, tt.service, tt.direction, tt.svcInsts)
    			if opt.mutable.cluster != nil && !reflect.DeepEqual(opt.mutable.cluster.Metadata, tt.want) {
    				t.Errorf("cluster metadata does not match expectation want %+v, got %+v", tt.want, opt.mutable.cluster.Metadata)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

              BinaryOperator<V> mergeFunction) {
        return CollectCollectors.toImmutableEnumMap(keyFunction, valueFunction, mergeFunction);
      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code HashMap} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableMap#of()} instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/metrics/error_collector_inst.h"
    #include "tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.h"
    #include "tensorflow/compiler/mlir/lite/schema/mutable/schema_generated.h"
    #include "tensorflow/compiler/mlir/lite/utils/convert_type.h"
    #include "tensorflow/compiler/mlir/lite/utils/low_bit_utils.h"
    #include "tensorflow/compiler/mlir/lite/utils/stateful_ops_utils.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    // package graph. flush must be called when package loading is complete
    // to ensure preload goroutines are no longer active. This is necessary
    // because of global mutable state that cannot safely be read and written
    // concurrently. In particular, packageDataCache may be cleared by "go get"
    // in GOPATH mode, and modload.loaded (accessed via modload.Lookup) may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/reflect/value.go

    }
    
    // convertOp: direct copy
    func cvtDirect(v Value, typ Type) Value {
    	f := v.flag
    	t := typ.common()
    	ptr := v.ptr
    	if f&flagAddr != 0 {
    		// indirect, mutable word - make a copy
    		c := unsafe_New(t)
    		typedmemmove(t, c, ptr)
    		ptr = c
    		f &^= flagAddr
    	}
    	return Value{t, ptr, v.flag.ro() | f} // v.flag.ro()|f == f?
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top